libxml++ r163 - in trunk: . libxml++ libxml++/parsers



Author: murrayc
Date: Thu Jan 17 09:26:37 2008
New Revision: 163
URL: http://svn.gnome.org/viewvc/libxml++?rev=163&view=rev

Log:
2008-01-17  Martin Michlmayr  <tbm cyrius com>>

* libxml++/parsers/parser.cc:
* libxml++/parsers/textreader.h:
Added includes to fix the build with gcc 4.3 
pre-releases.
Bug #510053.

Modified:
   trunk/ChangeLog
   trunk/MAINTAINERS
   trunk/NEWS
   trunk/configure.in
   trunk/libxml++/document.h
   trunk/libxml++/parsers/parser.cc
   trunk/libxml++/parsers/textreader.h

Modified: trunk/MAINTAINERS
==============================================================================
--- trunk/MAINTAINERS	(original)
+++ trunk/MAINTAINERS	Thu Jan 17 09:26:37 2008
@@ -2,6 +2,9 @@
 
 Christophe de Vienne
 Email: cdevienn cvs gnome org
+Userid: cdevienn
 
 Murray Cumming
-Email: murrayc usa net
+E-mail: murrayc murrayc com
+Userid: murrayc
+

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Thu Jan 17 09:26:37 2008
@@ -1,3 +1,14 @@
+2.20.0:
+
+Changes since 2.18:
+* Element: Added get_attribute_value(), 
+  to get a simple text value for an attribute.
+  (Stef Walter) Bug #373573.
+* Added an experimental --enable-api-exceptions 
+  configure option, to allow libxml++ to build without 
+  exceptions.
+  (Murray Cumming)
+ 
 2.19.2:
 
 * Added an experimental --enable-api-exceptions 

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Thu Jan 17 09:26:37 2008
@@ -2,8 +2,8 @@
 
 #release versioning
 GENERIC_MAJOR_VERSION=2
-GENERIC_MINOR_VERSION=19
-GENERIC_MICRO_VERSION=2
+GENERIC_MINOR_VERSION=20
+GENERIC_MICRO_VERSION=0
 GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION
 AC_SUBST(GENERIC_MAJOR_VERSION)
 AC_SUBST(GENERIC_MINOR_VERSION)

Modified: trunk/libxml++/document.h
==============================================================================
--- trunk/libxml++/document.h	(original)
+++ trunk/libxml++/document.h	Thu Jan 17 09:26:37 2008
@@ -104,6 +104,7 @@
    */
   CommentNode* add_comment(const Glib::ustring& content);
 
+  //TODO: Use std::string for filenames.
   /** Write the document to a file.
    * @param filename
    * @param encoding If not provided, UTF-8 is used

Modified: trunk/libxml++/parsers/parser.cc
==============================================================================
--- trunk/libxml++/parsers/parser.cc	(original)
+++ trunk/libxml++/parsers/parser.cc	Thu Jan 17 09:26:37 2008
@@ -9,6 +9,7 @@
 #include <libxml/parser.h>
 
 #include <cstdarg> //For va_list.
+#include <memory> //For auto_ptr.
 
 namespace xmlpp {
 

Modified: trunk/libxml++/parsers/textreader.h
==============================================================================
--- trunk/libxml++/parsers/textreader.h	(original)
+++ trunk/libxml++/parsers/textreader.h	Thu Jan 17 09:26:37 2008
@@ -12,6 +12,8 @@
 
 #include <glibmm/ustring.h>
 
+#include <memory>
+
 extern "C"
 {
   struct _xmlTextReader;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]