diff -ubNr dotconf-1.0.0/ChangeLog dotconf-1.0.2/ChangeLog --- dotconf-1.0.0/ChangeLog Wed Feb 21 17:25:08 2001 +++ dotconf-1.0.2/ChangeLog Sat Mar 24 19:58:54 2001 @@ -1,4 +1,10 @@ -[2001 02 21] [v1.0.0 (final)] +[2001 03 23] [v1.0.2] + Shane Wegner sent in patches to correct these errors: + - fix an autoconf build issue + - fix an index glitch in the CFG_TOGGLE macro + - fix dotconf-config to report the correct version number now + +[2001 02 21] [v1.0.0 (stable)] - enhanced version of the context example (examples/context/*) this version shows how to create options that are _only_ available in global context. diff -ubNr dotconf-1.0.0/README dotconf-1.0.2/README --- dotconf-1.0.0/README Wed Jan 24 01:25:04 2001 +++ dotconf-1.0.2/README Sat Mar 24 19:59:50 2001 @@ -1,4 +1,4 @@ -dot.conf v1.0.0 http://www.azzit.de/dotconf/ +dot.conf v1.0.2 http://www.azzit.de/dotconf/ ===================================================================== please refer to the API documentation in the doc/ directory of the @@ -30,14 +30,6 @@ - module support - some builtin commands (Include, IncludePath) - I'm contributing to the Mohawk Project by building a fully - Apache compatible configfile I/O codebase. Of course am i using dot.conf :) - During early development of the httpd.conf I/O i realized - that dot.conf up to 0.7.x wasn't powerful enough. Therefore - dot.conf 0.8.0 was created - and then made the first 1.0 release. - - For more info on the Mohawk Project visit - http://www.eunuchs.org/linux/Mohawk ,--- | Miscellany diff -ubNr dotconf-1.0.0/configure dotconf-1.0.2/configure --- dotconf-1.0.0/configure Wed Feb 21 16:24:23 2001 +++ dotconf-1.0.2/configure Fri Mar 23 10:18:58 2001 @@ -545,9 +545,9 @@ # DOTCONF_MAJOR_VERSION=1 DOTCONF_MINOR_VERSION=0 -DOTCONF_MICRO_VERSION=1 -DOTCONF_INTERFACE_AGE=1 -DOTCONF_BINARY_AGE=1 +DOTCONF_MICRO_VERSION=2 +DOTCONF_INTERFACE_AGE=2 +DOTCONF_BINARY_AGE=2 DOTCONF_VERSION=$DOTCONF_MAJOR_VERSION.$DOTCONF_MINOR_VERSION.$DOTCONF_MICRO_VERSION @@ -737,7 +737,7 @@ PACKAGE=dotconf -VERSION=1.0.0 +VERSION=1.0.2 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } diff -ubNr dotconf-1.0.0/configure.in dotconf-1.0.2/configure.in --- dotconf-1.0.0/configure.in Wed Feb 21 16:24:18 2001 +++ dotconf-1.0.2/configure.in Fri Mar 23 10:18:44 2001 @@ -10,9 +10,9 @@ # DOTCONF_MAJOR_VERSION=1 DOTCONF_MINOR_VERSION=0 -DOTCONF_MICRO_VERSION=1 -DOTCONF_INTERFACE_AGE=1 -DOTCONF_BINARY_AGE=1 +DOTCONF_MICRO_VERSION=2 +DOTCONF_INTERFACE_AGE=2 +DOTCONF_BINARY_AGE=2 DOTCONF_VERSION=$DOTCONF_MAJOR_VERSION.$DOTCONF_MINOR_VERSION.$DOTCONF_MICRO_VERSION AC_SUBST(DOTCONF_MAJOR_VERSION) @@ -32,7 +32,7 @@ AC_SUBST(LT_REVISION) AC_SUBST(LT_AGE) -AM_INIT_AUTOMAKE(dotconf, 1.0.0) +AM_INIT_AUTOMAKE(dotconf, 1.0.2) AM_CONFIG_HEADER(config.h) AC_CANONICAL_HOST diff -ubNr dotconf-1.0.0/src/dotconf.h dotconf-1.0.2/src/dotconf.h --- dotconf-1.0.0/src/dotconf.h Wed Jan 24 01:25:06 2001 +++ dotconf-1.0.2/src/dotconf.h Fri Mar 23 09:59:14 2001 @@ -1,5 +1,5 @@ -#ifndef HAVE_DOTCONF_H -#define HAVE_DOTCONF_H +#ifndef DOTCONF_H +#define DOTCONF_H #ifdef __cplusplus extern "C" { @@ -88,7 +88,7 @@ /* i needed this to check an ARG_LIST entry if it's toggled in one of my apps; maybe you do too */ #define CFG_TOGGLED(_val) ( (_val[0] == 'Y' \ - || _val[1] == 'y') \ + || _val[0] == 'y') \ || (_val[0] == '1') \ || ((_val[0] == 'o' \ || _val[0] == 'O') \ @@ -221,4 +221,4 @@ } /* extern "C" */ #endif -#endif /* HAVE_DOTCONF_H */ +#endif /* DOTCONF_H */