diff --git a/CHANGES b/CHANGES index c27a687..2f1f5b5 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,14 @@ -CHANGES - 2009-05-17 +CHANGES - 2010-09-18 -------------------- +CHANGES IN Mini-XML 2.7 + + - Updated the source headers to reference the Mini-XML license and its + exceptions to the LGPL2 (STR #108) + - The shared library did not include a destructor for the thread- + specific data key on UNIX-based operating systems (STR #103) + + CHANGES IN Mini-XML 2.6 - Documentation fixes (STR #91, STR #92) diff --git a/COPYING b/COPYING index fd9d353..d7b975c 100644 --- a/COPYING +++ b/COPYING @@ -1,10 +1,10 @@ Mini-XML License - October 18, 2005 + September 18, 2010 The Mini-XML library and included programs are provided under the -terms of the GNU Library General Public License (LGPL) with the -following exceptions: +terms of the GNU Library General Public License version 2 (LGPL2) +with the following exceptions: 1. Static linking of applications to the Mini-XML library does not constitute a derivative work and does not require @@ -14,13 +14,13 @@ following exceptions: If you link the application to a modified version of Mini-XML, then the changes to Mini-XML must be provided - under the terms of the LGPL in sections 1, 2, and 4. + under the terms of the LGPL2 in sections 1, 2, and 4. 2. You do not have to provide a copy of the Mini-XML license with programs that are linked to the Mini-XML library, nor do you have to identify the Mini-XML license in your program or documentation as required by section 6 of the - LGPL. + LGPL2. GNU LIBRARY GENERAL PUBLIC LICENSE diff --git a/Makefile.in b/Makefile.in index 8aae934..7fcebbe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,17 +3,15 @@ # # Makefile for Mini-XML, a small XML-like file parsing library. # -# Copyright 2003-2008 by Michael Sweet. +# Copyright 2003-2010 by Michael R Sweet. # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Library General Public -# License as published by the Free Software Foundation; either -# version 2, or (at your option) any later version. +# These coded instructions, statements, and computer programs are the +# property of Michael R Sweet and are protected by Federal copyright +# law. Distribution and use rights are outlined in the file "COPYING" +# which should have been included with this file. If this file is +# missing or damaged, see the license at: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# http://www.minixml.org/ # # diff --git a/config.h.in b/config.h.in index 7f43c27..68719b2 100644 --- a/config.h.in +++ b/config.h.in @@ -3,17 +3,15 @@ * * Configuration file for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2009 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ */ /* diff --git a/configure b/configure index a10a168..88a9f8b 100755 --- a/configure +++ b/configure @@ -1717,7 +1717,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers config.h" -VERSION=2.6 +VERSION=2.7 cat >>confdefs.h <<_ACEOF #define MXML_VERSION "Mini-XML v$VERSION" @@ -4289,7 +4289,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | else ac_cv_header_stdc=no fi -rm -f conftest* +rm -f -r conftest* fi @@ -4310,7 +4310,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | else ac_cv_header_stdc=no fi -rm -f conftest* +rm -f -r conftest* fi @@ -4678,7 +4678,7 @@ if test "${enable_shared+set}" = set; then fi -if test x$enable_shared = xyes; then +if test x$enable_shared != xno; then { echo "$as_me:$LINENO: checking for shared library support" >&5 echo $ECHO_N "checking for shared library support... $ECHO_C" >&6; } PICFLAG=1 diff --git a/configure.in b/configure.in index 497f9dd..753c8d7 100644 --- a/configure.in +++ b/configure.in @@ -3,17 +3,15 @@ dnl "$Id$" dnl dnl Configuration script for Mini-XML, a small XML-like file parsing library. dnl -dnl Copyright 2003-2009 by Michael Sweet. +dnl Copyright 2003-2010 by Michael R Sweet. dnl -dnl This program is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Library General Public -dnl License as published by the Free Software Foundation; either -dnl version 2, or (at your option) any later version. +dnl These coded instructions, statements, and computer programs are the +dnl property of Michael R Sweet and are protected by Federal copyright +dnl law. Distribution and use rights are outlined in the file "COPYING" +dnl which should have been included with this file. If this file is +dnl missing or damaged, see the license at: dnl -dnl This program is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -dnl GNU General Public License for more details. +dnl http://www.minixml.org/ dnl dnl Specify a source file from the distribution... @@ -23,7 +21,7 @@ dnl Set the name of the config header file... AC_CONFIG_HEADER(config.h) dnl Version number... -VERSION=2.6 +VERSION=2.7 AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(MXML_VERSION, "Mini-XML v$VERSION") @@ -166,7 +164,7 @@ DSOFLAGS="${DSOFLAGS:=}" AC_ARG_ENABLE(shared, [ --enable-shared turn on shared libraries, default=no]) -if test x$enable_shared = xyes; then +if test x$enable_shared != xno; then AC_MSG_CHECKING(for shared library support) PICFLAG=1 diff --git a/doc/license.html b/doc/license.html index 2946b55..da6f593 100644 --- a/doc/license.html +++ b/doc/license.html @@ -6,8 +6,8 @@ hspace="10" width="100" height="100" alt="A">Mini-XML License

The Mini-XML library and included programs are provided under -the terms of the GNU Library General Public License (LGPL) with -the following exceptions:

+the terms of the GNU Library General Public License version 2 +(LGPL2) with the following exceptions:

    @@ -20,7 +20,7 @@ the following exceptions:

    If you link the application to a modified version of Mini-XML, then the changes to Mini-XML must be - provided under the terms of the LGPL in sections 1, 2, + provided under the terms of the LGPL2 in sections 1, 2, and 4.

    @@ -28,18 +28,18 @@ the following exceptions:

    license with programs that are linked to the Mini-XML library, nor do you have to identify the Mini-XML license in your program or documentation as required by section 6 - of the LGPL. + of the LGPL2.

GNU LIBRARY GENERAL PUBLIC LICENSE

Version 2, June 1991 -
Copyright (C) 1991 Free Software Foundation, Inc. -
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -
Everyone is permitted to copy and distribute verbatim copies of +
Copyright (C) 1991 Free Software Foundation, Inc. +
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA +
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. -
[This is the first released version of the library GPL. It is +
[This is the first released version of the library GPL. It is numbered 2 because it goes with version 2 of the ordinary GPL.]

Preamble

diff --git a/doc/makedocs.sh b/doc/makedocs.sh index ad8c9c7..6f5ef14 100755 --- a/doc/makedocs.sh +++ b/doc/makedocs.sh @@ -4,17 +4,15 @@ # # Script to make documentation... # -# Copyright 2003-2007 by Michael Sweet. +# Copyright 2003-2010 by Michael R Sweet. # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Library General Public -# License as published by the Free Software Foundation; either -# version 2, or (at your option) any later version. +# These coded instructions, statements, and computer programs are the +# property of Michael R Sweet and are protected by Federal copyright +# law. Distribution and use rights are outlined in the file "COPYING" +# which should have been included with this file. If this file is +# missing or damaged, see the license at: # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# http://www.minixml.org/ # htmldoc --verbose --path "hires;." --batch mxml.book -f mxml.pdf diff --git a/mvalidate.c b/mvalidate.c index b58ef2d..f69036d 100644 --- a/mvalidate.c +++ b/mvalidate.c @@ -4,17 +4,15 @@ * XML Schema validation program for Mini-XML, a small XML-like file * parsing library. * - * Copyright 2003-2005 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-attr.c b/mxml-attr.c index ddba874..49d1209 100644 --- a/mxml-attr.c +++ b/mxml-attr.c @@ -3,17 +3,15 @@ * * Attribute support code for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2007 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-entity.c b/mxml-entity.c index d7a9cb9..878ab90 100644 --- a/mxml-entity.c +++ b/mxml-entity.c @@ -4,17 +4,15 @@ * Character entity support code for Mini-XML, a small XML-like * file parsing library. * - * Copyright 2003-2009 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-file.c b/mxml-file.c index 4cc9575..8bf52d8 100644 --- a/mxml-file.c +++ b/mxml-file.c @@ -3,17 +3,15 @@ * * File loading code for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2009 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-index.c b/mxml-index.c index 3c4566f..53619f8 100644 --- a/mxml-index.c +++ b/mxml-index.c @@ -3,17 +3,15 @@ * * Index support code for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2005 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-node.c b/mxml-node.c index ee56f15..fc72b56 100644 --- a/mxml-node.c +++ b/mxml-node.c @@ -3,17 +3,15 @@ * * Node support code for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2007 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-private.c b/mxml-private.c index 7a30762..e215bff 100644 --- a/mxml-private.c +++ b/mxml-private.c @@ -3,17 +3,15 @@ * * Private functions for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2010 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-private.h b/mxml-private.h index f67c37f..b52f75b 100644 --- a/mxml-private.h +++ b/mxml-private.h @@ -3,17 +3,15 @@ * * Private definitions for Mini-XML, a small XML-like file parsing library. * - * Copyright 2007 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ */ /* diff --git a/mxml-search.c b/mxml-search.c index 219590e..58d7fba 100644 --- a/mxml-search.c +++ b/mxml-search.c @@ -4,17 +4,15 @@ * Search/navigation functions for Mini-XML, a small XML-like file * parsing library. * - * Copyright 2003-2007 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-set.c b/mxml-set.c index cd54cb1..82ee42f 100644 --- a/mxml-set.c +++ b/mxml-set.c @@ -3,17 +3,15 @@ * * Node set functions for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2007 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml-string.c b/mxml-string.c index 91d9161..6ccbbca 100644 --- a/mxml-string.c +++ b/mxml-string.c @@ -3,17 +3,15 @@ * * String functions for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2009 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/mxml.h b/mxml.h index 2133cf9..1c74de7 100644 --- a/mxml.h +++ b/mxml.h @@ -3,17 +3,15 @@ * * Header file for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2009 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ */ /* diff --git a/mxmldoc.c b/mxmldoc.c index e524e76..a994bbd 100644 --- a/mxmldoc.c +++ b/mxmldoc.c @@ -5,17 +5,15 @@ * Documentation generator using Mini-XML, a small XML-like file parsing * library. * - * Copyright 2003-2009 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/testmxml.c b/testmxml.c index dd180d1..ef75bc6 100644 --- a/testmxml.c +++ b/testmxml.c @@ -3,17 +3,15 @@ * * Test program for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2007 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ * * Contents: * diff --git a/vcnet/config.h b/vcnet/config.h index 103d79a..a9a4682 100644 --- a/vcnet/config.h +++ b/vcnet/config.h @@ -3,17 +3,15 @@ * * Configuration file for Mini-XML, a small XML-like file parsing library. * - * Copyright 2003-2009 by Michael Sweet. + * Copyright 2003-2010 by Michael R Sweet. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2, or (at your option) any later version. + * These coded instructions, statements, and computer programs are the + * property of Michael R Sweet and are protected by Federal copyright + * law. Distribution and use rights are outlined in the file "COPYING" + * which should have been included with this file. If this file is + * missing or damaged, see the license at: * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * http://www.minixml.org/ */ /* @@ -66,7 +64,7 @@ * Version number... */ -#define MXML_VERSION "Mini-XML v2.6" +#define MXML_VERSION "Mini-XML v2.7" /*