From: Christian P. <cp...@us...> - 2004-12-28 20:35:58
|
Update of /cvsroot/pclasses/pclasses2/src/System In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31913/src/System Modified Files: Makefile.am Log Message: Fixed typo SharedLib.comon.cpp ==> SharedLib.common.cpp. Added SystemClock sources. Index: Makefile.am =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/System/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 28 Dec 2004 15:10:52 -0000 1.4 +++ Makefile.am 28 Dec 2004 20:35:47 -0000 1.5 @@ -65,6 +65,14 @@ IO_Sources = Pipe.win32.cpp File.win32.cpp FileInfo.win32.cpp Directory.win32.cpp endif +if WITH_POSIX_TIME +Time_Sources = SystemClock.posix.cpp +endif + +if WITH_WIN32_TIME +Time_Sources = SystemClock.win32.cpp +endif + INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/include $(all_includes) METASOURCES = AUTO @@ -73,7 +81,8 @@ libpclasses_system_la_SOURCES = timeout.cpp SystemError.cpp \ CriticalSection.cpp Mutex.cpp $(Thread_Sources) \ $(Semaphore_Sources) $(SharedMem_Sources) $(SharedLib_Sources) \ - SharedLib.comon.cpp FileInfo.common.cpp $(IO_Sources) + SharedLib.common.cpp FileInfo.common.cpp $(IO_Sources) \ + $(Time_Sources) libpclasses_system_la_LDFLAGS = -no-undefined libpclasses_system_la_LIBADD = $(top_builddir)/src/libpclasses.la \ |