[asycxx-devel] SF.net SVN: asycxx:[45] trunk
Status: Alpha
Brought to you by:
joe_steeve
From: <joe...@us...> - 2009-04-08 07:45:29
|
Revision: 45 http://asycxx.svn.sourceforge.net/asycxx/?rev=45&view=rev Author: joe_steeve Date: 2009-04-08 07:45:28 +0000 (Wed, 08 Apr 2009) Log Message: ----------- added new files into build system. removed Timer.* from build. Timer is still broken. So, until it is fixed, it cannot be put into the build system. From: Joe Steeve <js...@hi...> Modified Paths: -------------- trunk/include/Makefile.am trunk/src/Makefile.am Modified: trunk/include/Makefile.am =================================================================== --- trunk/include/Makefile.am 2009-04-08 07:44:37 UTC (rev 44) +++ trunk/include/Makefile.am 2009-04-08 07:45:28 UTC (rev 45) @@ -3,7 +3,6 @@ pkginclude_HEADERS = \ asycxx/Logger.h \ asycxx/Error.h \ - asycxx/Deferred.h \ asycxx/RefCounter.h \ asycxx/DataBuffer.h \ asycxx/Reactor.h \ @@ -11,11 +10,14 @@ asycxx/Timer.h \ asycxx/Transport.h \ asycxx/Listener.h \ + asycxx/StreamTransport.h \ asycxx/TCPTransport.h \ asycxx/TCPListener.h \ asycxx/TCPLLTransport.h \ asycxx/Protocol.h \ - asycxx/Factory.h \ + asycxx/StreamProtocol.h \ + asycxx/ProtocolFactory.h \ + asycxx/StreamProtocolFactory.h \ asycxx/MsgBus.h \ asycxx/MsgHandler.h \ asycxx/GimpleMsgBus.h \ Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2009-04-08 07:44:37 UTC (rev 44) +++ trunk/src/Makefile.am 2009-04-08 07:45:28 UTC (rev 45) @@ -1,31 +1,36 @@ # -*- mode: makefile; indent-tabs-mode: nil; tab-width: 4; -*- -lib_LTLIBRARIES = libasycxx-0.1.la +lib_LTLIBRARIES = libasycxx-0.1.la libasycxx-dbg-0.1.la libasycxx_0_1_la_SOURCES = \ Logger.cxx \ + RefCounter.cxx \ Error.cxx \ - Deferred.cxx \ - RefCounter.cxx \ DataBuffer.cxx \ Reactor.cxx \ SelectReactor.cxx \ - Timer.cxx \ Transport.cxx \ - Listener.cxx \ + StreamTransport.cxx \ + ProtocolFactory.cxx \ TCPTransport.cxx \ TCPListener.cxx \ TCPLLTransport.cxx \ Protocol.cxx \ - Factory.cxx \ + StreamProtocol.cxx \ MsgBus.cxx \ - MsgHandler.cxx \ GimpleMsgBus.cxx \ core.cxx \ RAWCANTransport.cxx \ RAWCANListener.cxx +# Timer.cxx + libasycxx_0_1_la_CPPFLAGS = -I$(top_srcdir)/include libasycxx_0_1_la_CXXFLAGS = -O2 libasycxx_0_1_la_LDFLAGS = -version-info 0:1:0 + +libasycxx_dbg_0_1_la_SOURCES = $(libasycxx_0_1_la_SOURCES) +libasycxx_dbg_0_1_la_CPPFLAGS = -I$(top_srcdir)/include +libasycxx_dbg_0_1_la_CXXFLAGS = -g +libasycxx_dbg_0_1_la_LDFLAGS = -version-info 0:1:0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |