Changeset 123 for myriad

Show
Ignore:
Timestamp:
03/05/07 21:31:51 (2 years ago)
Author:
zedsh..@zedshaw.com
Message:

Update for OSX build.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • myriad/src/myriad/CMakeLists.txt

    r118 r123  
    1515    ) 
    1616 
     17install(TARGETS myriad 
     18  LIBRARY DESTINATION lib 
     19  ARCHIVE DESTINATION lib) 
     20 
     21install(FILES 
     22  config.h defend.h io.h myriad.h sbuf.h 
     23  server.h sglib.h 
     24  DESTINATION include/myriad ) 
     25 
     26install(FILES 
     27  bstring/bstraux.h 
     28  bstring/bstrlib.h 
     29  DESTINATION include/myriad/bstring ) 
     30 
     31install(FILES 
     32  etcp/etcp.h 
     33  DESTINATION include/myriad/etcp ) 
     34 
     35install(FILES 
     36  pool/align.h 
     37  pool/halloc.h 
     38  pool/hlist.h 
     39  pool/macros.h 
     40  pool/pool.h 
     41  DESTINATION include/myriad/pool ) 
     42 
     43install(FILES 
     44  tasks/386-ucontext.h 
     45  tasks/power-ucontext.h 
     46  tasks/task.h 
     47  tasks/taskimpl.h 
     48  DESTINATION include/myriad/tasks ) 
     49 
  • myriad/src/myriad/pool/halloc.c

    r2 r123  
    1313 */ 
    1414 
    15 #include <malloc.h>  /* realloc */ 
     15#include <stdlib.h>  /* realloc */ 
    1616#include <string.h>  /* memset & co */ 
    1717