Index: ossp-pkg/pth/.cvsignore RCS File: /v/ossp/cvs/ossp-pkg/pth/.cvsignore,v co -q -kk -p'1.19' '/v/ossp/cvs/ossp-pkg/pth/.cvsignore,v' | diff -u /dev/null - -L'ossp-pkg/pth/.cvsignore' 2>/dev/null --- ossp-pkg/pth/.cvsignore +++ - 2024-05-14 08:38:00.809549637 +0200 @@ -0,0 +1,30 @@ +Makefile +config.log +config.cache +config.status +libtool +.libs +.done-* +pth-config +pth_acdef.h +pth_acmac.h +pth.h +pth_p.h +pthread-config +pthread.h +test_std +test_httpd +test_misc +test_mp +test_philo +test_sig +test_select +test_sfio +test_pthread +*.o +*.lo +*.a +*.la +core +*.core +libtool.m4 Index: ossp-pkg/pth/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/pth/ChangeLog,v rcsdiff -q -kk '-r1.558' '-r1.559' -u '/v/ossp/cvs/ossp-pkg/pth/ChangeLog,v' 2>/dev/null --- ChangeLog 2002/01/27 16:11:42 1.558 +++ ChangeLog 2002/01/30 12:54:21 1.559 @@ -19,6 +19,10 @@ | |_ ___) | __|_(_)____/____________________________________________________________ + *) Removed all generated files from CVS. + Use OSSP devtool stuff to re-generate files on demand. + Switched to Autoconf 2.52 and Libtool 1.4.2 environment. + [Ralf S. Engelschall] _ _ _ / || || | Index: ossp-pkg/pth/HACKING RCS File: /v/ossp/cvs/ossp-pkg/pth/HACKING,v rcsdiff -q -kk '-r1.12' '-r1.13' -u '/v/ossp/cvs/ossp-pkg/pth/HACKING,v' 2>/dev/null --- HACKING 2001/03/24 14:56:46 1.12 +++ HACKING 2002/01/30 12:54:21 1.13 @@ -94,8 +94,8 @@ config.guess .......... Autoconf platform guessing tool (part I) config.param .......... Autoconf command line parameter collections config.sub ............ Autoconf platform guessing tool (part II) - configure ............. Autoconf script (pre-generated from configure.in) - configure.in .......... Autoconf script source + configure ............. Autoconf script (pre-generated from configure.ac) + configure.ac .......... Autoconf script source ltconfig .............. Libtool configuration script ltmain.sh ............. Libtool main template Index: ossp-pkg/pth/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/pth/Makefile.in,v rcsdiff -q -kk '-r1.144' '-r1.145' -u '/v/ossp/cvs/ossp-pkg/pth/Makefile.in,v' 2>/dev/null --- Makefile.in 2002/01/27 11:03:39 1.144 +++ Makefile.in 2002/01/30 12:54:21 1.145 @@ -293,6 +293,7 @@ # clean the source tree by removing really all generate stuff realclean: distclean $(RM) $(TARGET_MANS) + ./devtool autoclean # give hints what to do as the next step what-next: @@ -372,54 +373,6 @@ ./test_sfio test-pthread: test_pthread ./test_pthread - -# GNU compat targets -check: test -installcheck: -installdirs: install-dirs -install-strip: install -mostlyclean: clean -maintainer-clean: realclean -info: -dvi: -TAGS: - -## -## ____ DEVELOPER TARGETS ___________________________________________ -## (THIS IS NOT INTENDED TO BE RUN BY END USERS) -## - -# fixup the permissions in the source tree -fixperm: - @echo "Fixing permissions in source tree" - @$(SHTOOL) fixperm * - -# update Autoconf files -update-autoconf: configure pth_acdef.h.in -configure: configure.in - $(RM) configure - autoconf -pth_acdef.h.in: configure.in acconfig.h acheader.m4 - $(RM) pth_acdef.h.in - cat acheader.m4 configure.in | autoheader - >pth_acdef.h.in - -# update build tools -update-tools: - @$(RM) shtool ltmain.sh ltconfig - @$(MAKE) $(MKFLAGS) shtool ltmain.sh ltconfig -shtool: - shtoolize -o shtool echo version scpp mkdir install fixperm tarball -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 ".`$(ECHO) $$nonopt | grep 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"; $(CAT) $$F >ltconfig - -# debug the test programs debug: debug-std debug-std: test_std TEST=test_std && $(_DEBUG) @@ -440,38 +393,16 @@ debug-pthread: test_pthread TEST=test_pthread && $(_DEBUG) -# roll the release or snapshot tarball -dist: distclean fixperm - @V=`$(SHTOOL) version -l c -d short $(_VERSION_FILE)`; NAME="pth-$$V"; \ - $(ECHO) "Rolling RELEASE tarball $$NAME.tar.gz"; $(_TARBALL) -snap: distclean fixperm - @V=`$(SHTOOL) version -l c -d short $(_VERSION_FILE)`; NAME="pth-$$V-SNAP"; \ - $(ECHO) "Rolling SNAPSHOT tarball $$NAME.tar.gz"; $(_TARBALL) - -# increase or update version information -new-version: - @V="$(VERSION)"; \ - if [ ".$$V" != . ]; then \ - OPT="-s$$V"; \ - else \ - OPT="-e"; \ - fi; \ - $(_VERSION) -update-version: - @OPT="-s`$(SHTOOL) version -lc -dshort $(_VERSION_FILE)`" && $(_VERSION) - -# make a striptease -striptease: - @$(PERL) striptease.pl - -# create dependencies -depend: - $(CP) Makefile.in Makefile.in.bak \ - && $(SED) -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \ - && $(CC) -MM $(CPPFLAGS) $(CFLAGS) *.c |\ - $(SED) -e 's/^\(pth_.*\)\.o:/\1.lo:/' >> Makefile.new \ - && $(CP) Makefile.new Makefile.in \ - && $(RM) Makefile.new +# GNU compat targets +check: test +installcheck: +installdirs: install-dirs +install-strip: install +mostlyclean: clean +maintainer-clean: realclean +info: +dvi: +TAGS: ## ## ____ DEPENDENCY AREA ____________________________________________ @@ -481,58 +412,37 @@ $(LOBJS): Makefile # DO NOT REMOVE -pth_attr.lo: pth_attr.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_cancel.lo: pth_cancel.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_clean.lo: pth_clean.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_compat.lo: pth_compat.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_data.lo: pth_data.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_debug.lo: pth_debug.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_errno.lo: pth_errno.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_event.lo: pth_event.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_ext.lo: pth_ext.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h -pth_fork.lo: pth_fork.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_high.lo: pth_high.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_lib.lo: pth_lib.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h -pth_mctx.lo: pth_mctx.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_msg.lo: pth_msg.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h -pth_pqueue.lo: pth_pqueue.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_ring.lo: pth_ring.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_sched.lo: pth_sched.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_string.lo: pth_string.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_sync.lo: pth_sync.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_syscall.lo: pth_syscall.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_tcb.lo: pth_tcb.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h -pth_time.lo: pth_time.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_util.lo: pth_util.c pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h -pth_vers.lo: pth_vers.c -pthread.o: pthread.c pthread.h pth_p.h pth_vers.c pth.h pth_acdef.h \ - pth_acmac.h +pth_attr.lo: pth_attr.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_cancel.o: pth_cancel.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_clean.o: pth_clean.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_compat.o: pth_compat.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_data.o: pth_data.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_debug.o: pth_debug.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_errno.o: pth_errno.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_event.o: pth_event.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_ext.o: pth_ext.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_fork.o: pth_fork.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_high.o: pth_high.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_lib.o: pth_lib.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_mctx.o: pth_mctx.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_msg.o: pth_msg.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_pqueue.o: pth_pqueue.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_ring.o: pth_ring.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_sched.o: pth_sched.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_string.o: pth_string.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_sync.o: pth_sync.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_syscall.o: pth_syscall.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_tcb.o: pth_tcb.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_time.o: pth_time.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_util.o: pth_util.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h +pth_vers.o: pth_vers.c pth_vers.c +pthread.o: pthread.c pth_p.h pth_vers.c pth.h pth_acdef.h pth_acmac.h test_common.o: test_common.c pth.h test_common.h test_httpd.o: test_httpd.c pth.h test_common.h test_misc.o: test_misc.c pth.h test_mp.o: test_mp.c pth.h test_common.h test_philo.o: test_philo.c pth.h test_common.h -test_pthread.o: test_pthread.c pthread.h -test_select.o: test_select.c pth.h +test_pthread.o: test_pthread.c test_select.o: test_select.c pth.h test_sfio.o: test_sfio.c pth.h test_sig.o: test_sig.c pth.h test_std.o: test_std.c pth.h Index: ossp-pkg/pth/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/pth/aclocal.m4,v rcsdiff -q -kk '-r1.92' '-r1.93' -u '/v/ossp/cvs/ossp-pkg/pth/aclocal.m4,v' 2>/dev/null --- aclocal.m4 2002/01/27 11:03:40 1.92 +++ aclocal.m4 2002/01/30 12:54:21 1.93 @@ -22,7 +22,6 @@ dnl ## dnl ## aclocal.m4: Pth Autoconf macros dnl ## -divert(-1) dnl # ``"Reuse an expert's code" is the right dnl # advice for most people. But it's a useless dnl # advice for the experts writing the code @@ -32,11 +31,11 @@ dnl ## dnl ## Display Configuration Headers dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_MSG_PART() dnl ## -define(AC_MSG_PART,[dnl +m4_define(AC_MSG_PART,[dnl if test ".$enable_subdir" != .yes; then AC_MSG_RESULT() AC_MSG_RESULT(${TB}$1:${TN}) @@ -46,11 +45,11 @@ dnl ## dnl ## Display a message under --verbose dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_MSG_VERBOSE() dnl ## -define(AC_MSG_VERBOSE,[dnl +m4_define(AC_MSG_VERBOSE,[dnl if test ".$verbose" = .yes; then AC_MSG_RESULT([ $1]) fi @@ -59,12 +58,12 @@ dnl ## dnl ## Do not display message for a command dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_MSG_SILENT(...) dnl ## -define(AC_FD_TMP, 9) -define(AC_MSG_SILENT,[dnl +m4_define(AC_FD_TMP, 9) +m4_define(AC_MSG_SILENT,[dnl exec AC_FD_TMP>&AC_FD_MSG AC_FD_MSG>/dev/null $1 exec AC_FD_MSG>&AC_FD_TMP AC_FD_TMP>&- @@ -73,13 +72,13 @@ dnl ## dnl ## Perform something only once dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_ONCE() dnl ## -define(AC_ONCE,[ +m4_define(AC_ONCE,[ ifelse(ac_once_$1, already_done, ,[ - define(ac_once_$1, already_done) + m4_define(ac_once_$1, already_done) $2 ])dnl ]) @@ -87,7 +86,7 @@ dnl ## dnl ## Support for $(S) dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_SRCDIR_PREFIX() dnl ## @@ -115,7 +114,7 @@ dnl ## dnl ## Support for --enable-subdir (for use with pth.m4) dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_ENABLESUBDIR dnl ## @@ -134,14 +133,14 @@ dnl ## dnl ## Support for Configuration Headers dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_HEADLINE(, , dnl ## , , dnl ## ) dnl ## AC_DEFUN(AC_HEADLINE,[dnl -AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)dnl +AC_DIVERT_PUSH(NOTICE)dnl # configuration header if test ".`echo dummy [$]@ | grep enable-subdir`" != .; then enable_subdir=yes @@ -184,15 +183,13 @@ dnl ## dnl ## Support for Platform IDs dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_PLATFORM() dnl ## AC_DEFUN(AC_PLATFORM,[ -if test ".$host" != .NONE; then +if test ".$host" != .; then $1="$host" -elif test ".$nonopt" != .NONE; then - $1="$nonopt" else $1=`${CONFIG_SHELL-/bin/sh} $srcdir/config.guess` fi @@ -206,15 +203,15 @@ dnl ## dnl ## Support for config.param files dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_CONFIG_PARAM() dnl ## AC_DEFUN(AC_CONFIG_PARAM,[ AC_DIVERT_PUSH(-1) -AC_ARG_WITH(param,[ --with-param=ID[,ID,..] load parameters from $1]) +AC_ARG_WITH(param,[ --with-param=ID[[,ID,..]] load parameters from $1]) AC_DIVERT_POP() -AC_DIVERT_PUSH(AC_DIVERSION_NOTICE) +AC_DIVERT_PUSH(NOTICE) ac_prev="" ac_param="" if test -f $1; then @@ -294,7 +291,7 @@ dnl ## dnl ## Check whether compiler option works dnl ## -dnl ## configure.in: +dnl ## configure.ac: dnl ## AC_COMPILER_OPTION(, ,