From: <br...@us...> - 2007-12-03 16:25:36
|
Revision: 355 http://libirc.svn.sourceforge.net/libirc/?rev=355&view=rev Author: brlcad Date: 2007-12-03 08:18:11 -0800 (Mon, 03 Dec 2007) Log Message: ----------- add build files to compile the new noinst botlib Modified Paths: -------------- trunk/libirc/botlib/inc/botlib.h Added Paths: ----------- trunk/libirc/botlib/inc/Makefile.am trunk/libirc/botlib/src/Makefile.am Added: trunk/libirc/botlib/inc/Makefile.am =================================================================== --- trunk/libirc/botlib/inc/Makefile.am (rev 0) +++ trunk/libirc/botlib/inc/Makefile.am 2007-12-03 16:18:11 UTC (rev 355) @@ -0,0 +1,5 @@ +# $Id: Makefile.am 234 2007-07-31 09:07:21Z brlcad $ + +EXTRA_HEADERS = botlib.h + +include $(top_srcdir)/misc/Makefile.defs Modified: trunk/libirc/botlib/inc/botlib.h =================================================================== --- trunk/libirc/botlib/inc/botlib.h 2007-11-29 01:11:42 UTC (rev 354) +++ trunk/libirc/botlib/inc/botlib.h 2007-12-03 16:18:11 UTC (rev 355) @@ -102,7 +102,7 @@ void reply ( const std::string &text, bool privately = false, bool action = false ); protected: - friend LibIRCBot; + friend class LibIRCBot; IRCClient &client; LibIRCBotMessage ( IRCClient &_client ) : client(_client){}; Added: trunk/libirc/botlib/src/Makefile.am =================================================================== --- trunk/libirc/botlib/src/Makefile.am (rev 0) +++ trunk/libirc/botlib/src/Makefile.am 2007-12-03 16:18:11 UTC (rev 355) @@ -0,0 +1,7 @@ +# $Id: Makefile.am 234 2007-07-31 09:07:21Z brlcad $ + +noinst_LTLIBRARIES = libbot.la + +libbot_la_SOURCES = botlib.cpp + +include $(top_srcdir)/misc/Makefile.defs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |