Index: ossp-pkg/sa/configure.ac RCS File: /v/ossp/cvs/ossp-pkg/sa/configure.ac,v rcsdiff -q -kk '-r1.10' '-r1.11' -u '/v/ossp/cvs/ossp-pkg/sa/configure.ac,v' 2>/dev/null --- configure.ac 2002/01/31 21:35:13 1.10 +++ configure.ac 2002/03/14 15:39:43 1.11 @@ -28,17 +28,13 @@ dnl ## configure.ac: GNU Autoconf source script dnl ## -AC_PREREQ(2.52) -AC_REVISION(1.0) -AC_INIT(README) - -AC_DIVERT_PUSH(NOTICE) +AC_PREREQ(2.53) +AC_INIT SA_VERSION_STR=`./shtool version -l txt -d long VERSION` -./shtool echo -e "Configuring %BOSSP sa%b (Socket Abstraction), Version %B${SA_VERSION_STR}%b" +./shtool echo -e "Configuring %BOSSP sa%b (Socket Abstraction), version %B${SA_VERSION_STR}%b" AC_SUBST(SA_VERSION_STR) -AC_DIVERT_POP() -AC_SET_MAKE +AC_PROG_MAKE_SET AC_PROG_CC AC_CHECK_DEBUGGING @@ -48,11 +44,11 @@ sinclude(sa.ac) SA_CHECK_ALL -AC_CHECK_EXTLIB([OSSP ex], ex, __ex_ctx, ex.h, [AC_DEFINE(WITH_EX)]) +AC_CHECK_EXTLIB([OSSP ex], ex, __ex_ctx, ex.h, + [AC_DEFINE(WITH_EX, 1, [Define to 1 if building with OSSP ex])]) AC_CONFIG_HEADERS(config.h) -AC_CONFIG_FILES(Makefile sa-config) +AC_CONFIG_FILES([Makefile sa-config]) +AC_CONFIG_COMMANDS([adjustment], [chmod a+x sa-config]) AC_OUTPUT -chmod a+x sa-config - Index: ossp-pkg/sa/devtool.conf RCS File: /v/ossp/cvs/ossp-pkg/sa/devtool.conf,v rcsdiff -q -kk '-r1.6' '-r1.7' -u '/v/ossp/cvs/ossp-pkg/sa/devtool.conf,v' 2>/dev/null --- devtool.conf 2002/01/31 21:35:13 1.6 +++ devtool.conf 2002/03/14 15:39:43 1.7 @@ -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 Index: ossp-pkg/sa/devtool.func RCS File: /v/ossp/cvs/ossp-pkg/sa/devtool.func,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/sa/devtool.func,v' 2>/dev/null --- devtool.func 2001/10/24 13:42:34 1.2 +++ devtool.func 2002/03/14 15:39:43 1.3 @@ -1,6 +1,6 @@ ## ## devtool.func -- Development Tool Functions -## Copyright (c) 2001 Ralf S. Engelschall +## Copyright (c) 2001-2002 Ralf S. Engelschall ## devtool_require () { @@ -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/sa/sa.ac RCS File: /v/ossp/cvs/ossp-pkg/sa/sa.ac,v rcsdiff -q -kk '-r1.8' '-r1.9' -u '/v/ossp/cvs/ossp-pkg/sa/sa.ac,v' 2>/dev/null --- sa.ac 2002/01/02 12:43:50 1.8 +++ sa.ac 2002/03/14 15:39:43 1.9 @@ -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 ])