From bbbcdc20e3d4fb1ec640af84fc630bec3463912b Mon Sep 17 00:00:00 2001 From: Georg Hopp Date: Mon, 16 Mar 2009 11:25:47 +0000 Subject: [PATCH] now all compiles under linux...need replacement for CONDITION_VARIABLE for win32 --- src/Makefile.am | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 532cc82..c434ea1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,21 +6,17 @@ LIBS += @THREAD_LIB@ @SOCK_LIB@ INCLUDES = -I../include @INOTIFY_INCLUDES@ -#libscot_source = scot_common.c cmdla.c \ -# list.c stack.c queue.c \ -# thread.c dir.c \ -# exception.c scot_exceptions.c \ -# stream.c stream_ctl.c socket.c socket_in.c \ -# event.c event_listener.c - libscot_source = scot_common.c cmdla.c \ list.c stack.c queue.c \ thread.c dir.c \ exception.c scot_exceptions.c \ stream.c stream_ctl.c socket.c socket_in.c \ - event.c event_listener.c \ - stream_pool_base.c stream_pool_management.c \ + event.c event_listener.c + +if !WIN32 +libscot_source += stream_pool_base.c stream_pool_management.c \ stream_pool_fraction.c spf_thread_impl.c +endif BUILT_SOURCES = thread.c memory.c dir.c spf_thread_impl.c stream_ctl.c CLEANFILES = thread.c memory.c dir.c spf_thread_impl.c stream_ctl.c