Index: ossp-pkg/str/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/str/ChangeLog,v rcsdiff -q -kk '-r1.30' '-r1.31' -u '/v/ossp/cvs/ossp-pkg/str/ChangeLog,v' 2>/dev/null --- ChangeLog 2001/08/16 12:04:25 1.30 +++ ChangeLog 2001/08/16 12:16:51 1.31 @@ -11,6 +11,9 @@ Changes between 0.9.4 and 0.9.5 (14-Jul-2000 to 16-Aug-2001): + *) Upgraded to GNU Autoconf 2.52 and GNU Libtool 1.4 + [Ralf S. Engelschall] + *) Upgrade to a stripped down version of PCRE 3.5 [Ralf S. Engelschall] Index: ossp-pkg/str/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/str/Makefile.in,v rcsdiff -q -kk '-r1.32' '-r1.33' -u '/v/ossp/cvs/ossp-pkg/str/Makefile.in,v' 2>/dev/null --- Makefile.in 2001/08/16 12:04:25 1.32 +++ Makefile.in 2001/08/16 12:16:51 1.33 @@ -149,11 +149,16 @@ $(RM) libtool $(RM) Makefile +realclean: distclean + $(RM) config.guess config.sub ltmain.sh libtool.m4 + $(RM) configure str_config.h.in + $(RM) shtool + dist: distclean @$(SHTOOL) fixperm -v .; \ V=`$(SHTOOL) version -l c -d short str_version.c`; \ $(SHTOOL) tarball -o str-$${V}.tar.gz -d str-$${V} -u rse -g str \ - -e 'CVS,\.cvsignore,\.[ao],^\.' -c 'gzip --best' . + -e 'CVS,\.cvsignore,\.[ao],^\.,autogen.sh' -c 'gzip --best' . # increase or update version information new-version: @@ -167,24 +172,6 @@ update-version: @OPT="-s`$(SHTOOL) version -lc -dshort $(_VERSION_FILE)`" && $(_VERSION) -update: - @$(RM) ltmain.sh ltconfig shtool - @$(MAKE) $(MFLAGS) ltmain.sh ltconfig configure shtool -configure: configure.in aclocal.m4 - $(RM) configure - autoconf -ltmain.sh: - @F=`libtoolize -n -c -f | grep 'cp.*ltmain.sh' |\ - sed -e 's;[^/]*;;' -e 's; .*;;'`; \ - echo "ltmain.sh <-- $$F"; cat $$F |\ - sed -e 's:/bin/sh; then:/bin/sh || test "$$nonopt" = ./shtool;then:' \ - -e 's:exec \$$SHELL \$$0 --finish:exit 0 #:' >ltmain.sh -ltconfig: - @F=`libtoolize -n -c -f | grep 'cp.*ltconfig' | sed -e 's;[^/]*;;' -e 's; .*;;'`; \ - echo "ltconfig <-- $$F"; cp $$F . -shtool: - shtoolize -o shtool echo version mkdir install fixperm tarball - # create dependencies depend: cp Makefile.in Makefile.in.bak \ Index: ossp-pkg/str/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/str/aclocal.m4,v co -q -kk -p'1.3' '/v/ossp/cvs/ossp-pkg/str/aclocal.m4,v' | diff -u /dev/null - -L'ossp-pkg/str/aclocal.m4' 2>/dev/null --- ossp-pkg/str/aclocal.m4 +++ - 2024-05-04 05:51:03.188023015 +0200 @@ -0,0 +1,288 @@ + +dnl ## +dnl ## Support for Platform IDs +dnl ## +dnl ## configure.in: +dnl ## AC_PLATFORM() +dnl ## + +AC_DEFUN(AC_PLATFORM,[ +if test ".$host" != .NONE && test ".$host" != .; then + $1="$host" +else + $1=`${CONFIG_SHELL-/bin/sh} $srcdir/config.guess` +fi +$1=`${CONFIG_SHELL-/bin/sh} $srcdir/config.sub $$1` || exit 1 +AC_SUBST($1) +if test ".$enable_subdir" != .yes; then + echo "Platform: ${TB}${$1}${TN}" +fi +])dnl + +dnl ## +dnl ## Support for Configuration Headers +dnl ## +dnl ## configure.in: +dnl ## AC_HEADLINE(, , +dnl ## , , +dnl ## ) +dnl ## + +AC_DEFUN(AC_HEADLINE,[dnl +AC_DIVERT_PUSH(NOTICE)dnl +# configuration header +if test ".`echo dummy [$]@ | grep help`" = .; then + # bootstrapping shtool + ac_prog=[$]0 +changequote(, )dnl + ac_srcdir=`echo $ac_prog | sed -e 's%/[^/][^/]*$%%' -e 's%\([^/]\)/*$%\1%'` +changequote([, ])dnl + test ".$ac_srcdir" = ".$ac_prog" && ac_srcdir=. + ac_shtool="$ac_srcdir/shtool" + + # find out terminal sequences + TB=`$ac_shtool echo -n -e %B 2>/dev/null` + TN=`$ac_shtool echo -n -e %b 2>/dev/null` + + # find out package version + $3_STR="`$ac_shtool version -l c -d long $ac_srcdir/$4`" + AC_SUBST($3_STR) + + # friendly header ;) + echo "Configuring ${TB}$1${TN} ($2), Version ${TB}${$3_STR}${TN}" + echo "$5" + + # additionally find out hex version + $3_HEX="`$ac_shtool version -l c -d hex $ac_srcdir/$4`" + AC_SUBST($3_HEX) +fi +AC_DIVERT_POP() +])dnl + +dnl ## +dnl ## Check whether compiler option works +dnl ## +dnl ## configure.in: +dnl ## AC_COMPILER_OPTION(, ,