From: <vac...@us...> - 2010-04-29 12:22:08
|
Revision: 184 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=184&view=rev Author: vaclavslavik Date: 2010-04-29 12:21:58 +0000 (Thu, 29 Apr 2010) Log Message: ----------- Update libtool version info to reflect new APIs. Modified Paths: -------------- trunk/src/Makefile.am Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2010-04-20 16:15:43 UTC (rev 183) +++ trunk/src/Makefile.am 2010-04-29 12:21:58 UTC (rev 184) @@ -9,7 +9,7 @@ libxmlwrapp_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXML_CFLAGS) libxmlwrapp_la_LIBADD = $(LIBXML_LIBS) -libxmlwrapp_la_LDFLAGS = -version-info 5:1:0 +libxmlwrapp_la_LDFLAGS = -version-info 6:0:1 libxmlwrapp_la_SOURCES = \ libxml/ait_impl.cxx \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <va...@us...> - 2011-07-07 18:40:51
|
Revision: 186 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=186&view=rev Author: vadz Date: 2011-07-07 18:40:43 +0000 (Thu, 07 Jul 2011) Log Message: ----------- Add -no-undefined to libraries LDFLAGS to allow creating DLLs under Windows. Libtool refuses to even try to create shared libraries under Windows without -no-undefined and this even if --disable-static is specified when configuring. As we don't have any undefined symbols in our libraries, use -no-undefined to explicitly communicate this to libtool and convince it to build DLLs. Modified Paths: -------------- trunk/src/Makefile.am Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2010-05-21 16:59:34 UTC (rev 185) +++ trunk/src/Makefile.am 2011-07-07 18:40:43 UTC (rev 186) @@ -9,7 +9,7 @@ libxmlwrapp_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXML_CFLAGS) libxmlwrapp_la_LIBADD = $(LIBXML_LIBS) -libxmlwrapp_la_LDFLAGS = -version-info 6:0:1 +libxmlwrapp_la_LDFLAGS = -version-info 6:0:1 -no-undefined libxmlwrapp_la_SOURCES = \ libxml/ait_impl.cxx \ @@ -36,7 +36,7 @@ libxsltwrapp_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBEXSLT_CFLAGS) $(LIBXSLT_CFLAGS) libxsltwrapp_la_LIBADD = libxmlwrapp.la $(LIBEXSLT_LIBS) $(LIBXSLT_LIBS) -libxsltwrapp_la_LDFLAGS = -version-info 3:0:0 +libxsltwrapp_la_LDFLAGS = -version-info 3:0:0 -no-undefined libxsltwrapp_la_SOURCES = \ libxslt/init.cxx \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tbr...@us...> - 2012-03-20 01:20:20
|
Revision: 196 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=196&view=rev Author: tbrowder2 Date: 2012-03-20 01:20:13 +0000 (Tue, 20 Mar 2012) Log Message: ----------- change C++ source file extensions from cxx to cc Modified Paths: -------------- trunk/src/Makefile.am Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2012-03-19 23:02:47 UTC (rev 195) +++ trunk/src/Makefile.am 2012-03-20 01:20:13 UTC (rev 196) @@ -12,23 +12,23 @@ libxmlwrapp_la_LDFLAGS = -version-info 6:0:1 -no-undefined libxmlwrapp_la_SOURCES = \ - libxml/ait_impl.cxx \ + libxml/ait_impl.cc \ libxml/ait_impl.h \ - libxml/attributes.cxx \ - libxml/document.cxx \ - libxml/dtd_impl.cxx \ + libxml/attributes.cc \ + libxml/document.cc \ + libxml/dtd_impl.cc \ libxml/dtd_impl.h \ - libxml/event_parser.cxx \ - libxml/init.cxx \ - libxml/node.cxx \ - libxml/nodes_view.cxx \ - libxml/node_iterator.cxx \ + libxml/event_parser.cc \ + libxml/init.cc \ + libxml/node.cc \ + libxml/nodes_view.cc \ + libxml/node_iterator.cc \ libxml/node_iterator.h \ - libxml/node_manip.cxx \ + libxml/node_manip.cc \ libxml/node_manip.h \ libxml/pimpl_base.h \ - libxml/tree_parser.cxx \ - libxml/utility.cxx \ + libxml/tree_parser.cc \ + libxml/utility.cc \ libxml/utility.h @@ -39,8 +39,8 @@ libxsltwrapp_la_LDFLAGS = -version-info 3:0:0 -no-undefined libxsltwrapp_la_SOURCES = \ - libxslt/init.cxx \ + libxslt/init.cc \ libxslt/result.h \ - libxslt/stylesheet.cxx + libxslt/stylesheet.cc endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tbr...@us...> - 2012-03-20 14:25:34
|
Revision: 210 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=210&view=rev Author: tbrowder2 Date: 2012-03-20 14:25:23 +0000 (Tue, 20 Mar 2012) Log Message: ----------- renaming ustring Modified Paths: -------------- trunk/src/Makefile.am Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2012-03-20 14:22:14 UTC (rev 209) +++ trunk/src/Makefile.am 2012-03-20 14:25:23 UTC (rev 210) @@ -2,18 +2,18 @@ AM_CPPFLAGS = -I$(top_srcdir)/include $(CXXFLAGS_VISIBILITY) if WITH_XSLT -lib_LTLIBRARIES = libxmlwrapp.la libxsltwrapp.la libustring.la +lib_LTLIBRARIES = libxmlwrapp.la libxsltwrapp.la libxmlwrappstring.la else -lib_LTLIBRARIES = libxmlwrapp.la libustring.la +lib_LTLIBRARIES = libxmlwrapp.la libxmlwrappstring.la endif -libustring_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXML_CFLAGS) -libustring_la_LIBADD = $(LIBXML_LIBS) -libustring_la_LDFLAGS = -version-info 6:0:1 -no-undefined +libxmlwrappstring_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXML_CFLAGS) +libxmlwrappstring_la_LIBADD = $(LIBXML_LIBS) +libxmlwrappstring_la_LDFLAGS = -version-info 6:0:1 -no-undefined -libustring_la_SOURCES = \ - libustring/ustring.cc \ - libustring/ustring.h \ +libxmlwrappstring_la_SOURCES = \ + libxmlwrappstring/xmlwrappstring.cc \ + libxmlwrappstring/xmlwrappstring.h \ libxmlwrapp_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXML_CFLAGS) libxmlwrapp_la_LIBADD = $(LIBXML_LIBS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tbr...@us...> - 2012-03-20 14:52:50
|
Revision: 215 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=215&view=rev Author: tbrowder2 Date: 2012-03-20 14:52:40 +0000 (Tue, 20 Mar 2012) Log Message: ----------- xmlwrappstring header removed from local sources Modified Paths: -------------- trunk/src/Makefile.am Modified: trunk/src/Makefile.am =================================================================== --- trunk/src/Makefile.am 2012-03-20 14:49:40 UTC (rev 214) +++ trunk/src/Makefile.am 2012-03-20 14:52:40 UTC (rev 215) @@ -12,8 +12,7 @@ libxmlwrappstring_la_LDFLAGS = -version-info 6:0:1 -no-undefined libxmlwrappstring_la_SOURCES = \ - libxmlwrappstring/xmlwrappstring.cc \ - libxmlwrappstring/xmlwrappstring.h + libxmlwrappstring/xmlwrappstring.cc libxmlwrapp_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXML_CFLAGS) libxmlwrapp_la_LIBADD = $(LIBXML_LIBS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |