Commit bbbcdc20e3d4fb1ec640af84fc630bec3463912b

Authored by Georg Hopp
1 parent 9f9d9379

now all compiles under linux...need replacement for CONDITION_VARIABLE for win32

Showing 1 changed file with 5 additions and 9 deletions
@@ -6,21 +6,17 @@ LIBS += @THREAD_LIB@ @SOCK_LIB@ @@ -6,21 +6,17 @@ LIBS += @THREAD_LIB@ @SOCK_LIB@
6 6
7 INCLUDES = -I../include @INOTIFY_INCLUDES@ 7 INCLUDES = -I../include @INOTIFY_INCLUDES@
8 8
9 -#libscot_source = scot_common.c cmdla.c \  
10 -# list.c stack.c queue.c \  
11 -# thread.c dir.c \  
12 -# exception.c scot_exceptions.c \  
13 -# stream.c stream_ctl.c socket.c socket_in.c \  
14 -# event.c event_listener.c  
15 -  
16 libscot_source = scot_common.c cmdla.c \ 9 libscot_source = scot_common.c cmdla.c \
17 list.c stack.c queue.c \ 10 list.c stack.c queue.c \
18 thread.c dir.c \ 11 thread.c dir.c \
19 exception.c scot_exceptions.c \ 12 exception.c scot_exceptions.c \
20 stream.c stream_ctl.c socket.c socket_in.c \ 13 stream.c stream_ctl.c socket.c socket_in.c \
21 - event.c event_listener.c \  
22 - stream_pool_base.c stream_pool_management.c \ 14 + event.c event_listener.c
  15 +
  16 +if !WIN32
  17 +libscot_source += stream_pool_base.c stream_pool_management.c \
23 stream_pool_fraction.c spf_thread_impl.c 18 stream_pool_fraction.c spf_thread_impl.c
  19 +endif
24 20
25 BUILT_SOURCES = thread.c memory.c dir.c spf_thread_impl.c stream_ctl.c 21 BUILT_SOURCES = thread.c memory.c dir.c spf_thread_impl.c stream_ctl.c
26 CLEANFILES = thread.c memory.c dir.c spf_thread_impl.c stream_ctl.c 22 CLEANFILES = thread.c memory.c dir.c spf_thread_impl.c stream_ctl.c
Please register or login to post a comment