Index: ossp-pkg/l2/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/l2/aclocal.m4,v rcsdiff -q -kk '-r1.10' '-r1.11' -u '/v/ossp/cvs/ossp-pkg/l2/aclocal.m4,v' 2>/dev/null --- aclocal.m4 2002/01/02 17:07:38 1.10 +++ aclocal.m4 2002/03/14 15:29:23 1.11 @@ -59,7 +59,6 @@ dnl ## AC_DEFUN(AC_HEADLINE,[dnl -AC_DIVERT_PUSH(NOTICE)dnl # configuration header if test ".`echo dummy [$]@ | grep help`" = .; then # bootstrapping shtool @@ -88,7 +87,6 @@ $3_HEX="`$ac_shtool version -l c -d hex $ac_srcdir/$4`" AC_SUBST($3_HEX) fi -AC_DIVERT_POP() ])dnl dnl ## Index: ossp-pkg/l2/configure.ac RCS File: /v/ossp/cvs/ossp-pkg/l2/configure.ac,v rcsdiff -q -kk '-r1.19' '-r1.20' -u '/v/ossp/cvs/ossp-pkg/l2/configure.ac,v' 2>/dev/null --- configure.ac 2002/01/30 19:28:42 1.19 +++ configure.ac 2002/03/14 15:29:23 1.20 @@ -27,20 +27,17 @@ dnl ## configure.in: Autoconf specification dnl ## -AC_PREREQ(2.52)dnl -AC_REVISION(1.0) - -AC_INIT(README) +AC_PREREQ(2.53) +AC_INIT AC_HEADLINE(dnl OSSP l2, Logging Library, dnl L2_VERSION, l2_version.c, dnl [Copyright (c) 2001-2002 The OSSP Project (http://www.ossp.org/) Copyright (c) 2001-2002 Cable & Wireless Deutschland (http://www.cw.com/de/)]) -AC_CONFIG_HEADER(l2_config.h) AC_PREFIX_DEFAULT(/usr/local) AC_PLATFORM(PLATFORM) -AC_SET_MAKE +AC_PROG_MAKE_SET AC_PROG_CC AC_PROG_CPP AC_CHECK_DEBUGGING @@ -80,20 +77,18 @@ case $PLATFORM in *-*-solaris2.[[6-8]]* ) - AC_DEFINE(HAVE_VSYSLOG_USVALIST) + AC_DEFINE(HAVE_VSYSLOG_USVALIST, 1, [Define to 1 if vsyslog has underscored va_list]) ;; esac sinclude(l2_ut_sa.ac) SA_CHECK_ALL -AC_CHECK_EXTLIB([Dmalloc], dmalloc, dmalloc_debug, dmalloc.h, AC_DEFINE(WITH_DMALLOC)) +AC_CHECK_EXTLIB([Dmalloc], dmalloc, dmalloc_debug, dmalloc.h, + [AC_DEFINE(WITH_DMALLOC, 1, [Define to 1 if building with Dmalloc])]) -AC_OUTPUT(dnl -Makefile dnl -l2.h dnl -l2-config dnl -,dnl -chmod a+x l2-config -)dnl +AC_CONFIG_HEADERS(l2_config.h) +AC_CONFIG_FILES([Makefile l2.h l2-config]) +AC_CONFIG_COMMANDS([adjustment], [chmod a+x l2-config]) +AC_OUTPUT Index: ossp-pkg/l2/devtool.conf RCS File: /v/ossp/cvs/ossp-pkg/l2/devtool.conf,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/l2/devtool.conf,v' 2>/dev/null --- devtool.conf 2001/11/08 20:28:22 1.2 +++ devtool.conf 2002/03/14 15:29:23 1.3 @@ -3,9 +3,9 @@ ## %autogen - @autogen shtool 1.5.4 "1.5.*" all + @autogen shtool 1.6.0 "1.6.*" all @autogen libtool 1.4.2 "1.4*" - @autogen autoconf 2.52 "2.5.*" + @autogen autoconf 2.53 "2.5[3-9]*" %autoclean @autoclean shtool @@ -21,7 +21,7 @@ "$@" %version - ./shtool version -l c -n "OSSP L2" -p "l2_" -e l2_version.c + ./shtool version -l c -n "OSSP l2" -p "l2_" -e l2_version.c %dist make distclean >/dev/null 2>&1 Index: ossp-pkg/l2/devtool.func RCS File: /v/ossp/cvs/ossp-pkg/l2/devtool.func,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/l2/devtool.func,v' 2>/dev/null --- devtool.func 2002/01/02 17:07:38 1.2 +++ devtool.func 2002/03/14 15:29:23 1.3 @@ -33,6 +33,7 @@ echo "generating (GNU Autoconf $autoconf_version): configure config.h.in" autoconf autoheader 2>&1 | grep -v "is unchanged" + rm -rf autom4te.cache >/dev/null 2>&1 ;; libtool ) libtoolize_version=`devtool_require libtoolize --version 4 "$1" "$2"` Index: ossp-pkg/l2/l2_ut_sa.ac RCS File: /v/ossp/cvs/ossp-pkg/l2/l2_ut_sa.ac,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/l2/l2_ut_sa.ac,v' 2>/dev/null --- l2_ut_sa.ac 2001/10/26 10:59:47 1.4 +++ l2_ut_sa.ac 2002/03/14 15:29:23 1.5 @@ -49,7 +49,7 @@ ])dnl AC_MSG_RESULT($ac_cv_typedef_$1) if test $ac_cv_typedef_$1 = yes; then - AC_DEFINE(HAVE_[]translit($1, [a-z], [A-Z])) + AC_DEFINE(HAVE_[]translit($1, [a-z], [A-Z]), 1, [Define to 1 if $1 exists]) fi ])