diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.in | 1 | ||||
-rw-r--r-- | include/libxml/Makefile.in | 1 | ||||
-rw-r--r-- | include/libxml/xmlversion.h | 8 |
3 files changed, 6 insertions, 4 deletions
diff --git a/include/Makefile.in b/include/Makefile.in index 2d89317..73e91b3 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -149,6 +149,7 @@ RDL_LIBS = @RDL_LIBS@ READER_TEST = @READER_TEST@ RELDATE = @RELDATE@ RM = @RM@ +SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STATIC_BINARIES = @STATIC_BINARIES@ diff --git a/include/libxml/Makefile.in b/include/libxml/Makefile.in index 91ca6a6..415cde4 100644 --- a/include/libxml/Makefile.in +++ b/include/libxml/Makefile.in @@ -153,6 +153,7 @@ RDL_LIBS = @RDL_LIBS@ READER_TEST = @READER_TEST@ RELDATE = @RELDATE@ RM = @RM@ +SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STATIC_BINARIES = @STATIC_BINARIES@ diff --git a/include/libxml/xmlversion.h b/include/libxml/xmlversion.h index 78bad60..71c21ea 100644 --- a/include/libxml/xmlversion.h +++ b/include/libxml/xmlversion.h @@ -29,21 +29,21 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version); * * the version string like "1.2.3" */ -#define LIBXML_DOTTED_VERSION "2.6.29" +#define LIBXML_DOTTED_VERSION "2.6.30" /** * LIBXML_VERSION: * * the version number: 1.2.3 value is 10203 */ -#define LIBXML_VERSION 20629 +#define LIBXML_VERSION 20630 /** * LIBXML_VERSION_STRING: * * the version number string, 1.2.3 value is "10203" */ -#define LIBXML_VERSION_STRING "20629" +#define LIBXML_VERSION_STRING "20630" /** * LIBXML_VERSION_EXTRA: @@ -58,7 +58,7 @@ XMLPUBFUN void XMLCALL xmlCheckVersion(int version); * Macro to check that the libxml version in use is compatible with * the version the software has been compiled against */ -#define LIBXML_TEST_VERSION xmlCheckVersion(20629); +#define LIBXML_TEST_VERSION xmlCheckVersion(20630); #ifndef VMS #if 0 |