Index: ossp-pkg/res/AUTHORS RCS File: /v/ossp/cvs/ossp-pkg/res/AUTHORS,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/AUTHORS,v' | diff -u /dev/null - -L'ossp-pkg/res/AUTHORS' 2>/dev/null --- ossp-pkg/res/AUTHORS +++ - 2024-05-09 09:56:18.057093899 +0200 @@ -0,0 +1,15 @@ + _ ___ ____ ____ ____ + |_|_ _ / _ \/ ___/ ___|| _ \ _ __ ___ ___ + _|_||_| | | | \___ \___ \| |_) | | '__/ _ \/ __| + |_||_|_| | |_| |___) |__) | __/ | | | __/\__ \ + |_|_|_| \___/|____/____/|_| |_| \___||___/ + + OSSP res - Resource Pools + + AUTHORS + + This is a list of authors who have written + or edited major parts of the OSSP res sources. + + Ralf S. Engelschall + Index: ossp-pkg/res/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/res/ChangeLog,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/ChangeLog,v' | diff -u /dev/null - -L'ossp-pkg/res/ChangeLog' 2>/dev/null --- ossp-pkg/res/ChangeLog +++ - 2024-05-09 09:56:18.059750698 +0200 @@ -0,0 +1,17 @@ + _ ___ ____ ____ ____ + |_|_ _ / _ \/ ___/ ___|| _ \ _ __ ___ ___ + _|_||_| | | | \___ \___ \| |_) | | '__/ _ \/ __| + |_||_|_| | |_| |___) |__) | __/ | | | __/\__ \ + |_|_|_| \___/|____/____/|_| |_| \___||___/ + + OSSP res - Resource Pools + + ChangeLog + + This is the list of all changes to the OSSP res source tree. + + Changes between GENESIS and 0.9.0 (31-Jan-2002) + + *) Created initial version + [Ralf S. Engelschall] + Index: ossp-pkg/res/INSTALL RCS File: /v/ossp/cvs/ossp-pkg/res/INSTALL,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/INSTALL,v' | diff -u /dev/null - -L'ossp-pkg/res/INSTALL' 2>/dev/null --- ossp-pkg/res/INSTALL +++ - 2024-05-09 09:56:18.062342498 +0200 @@ -0,0 +1,18 @@ + _ ___ ____ ____ ____ + |_|_ _ / _ \/ ___/ ___|| _ \ _ __ ___ ___ + _|_||_| | | | \___ \___ \| |_) | | '__/ _ \/ __| + |_||_|_| | |_| |___) |__) | __/ | | | __/\__ \ + |_|_|_| \___/|____/____/|_| |_| \___||___/ + + OSSP res - Resource Pools + + INSTALL + + To install OSSP res into /path/to/res/ perform + the following steps in your shell: + + $ ./configure --prefix=/path/to/res + $ make + $ make check + $ make install + Index: ossp-pkg/res/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/res/Makefile.in,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/Makefile.in,v' | diff -u /dev/null - -L'ossp-pkg/res/Makefile.in' 2>/dev/null --- ossp-pkg/res/Makefile.in +++ - 2024-05-09 09:56:18.064924546 +0200 @@ -0,0 +1,131 @@ +## +## OSSP res - Resource Pools +## Copyright (c) 2003 Ralf S. Engelschall +## Copyright (c) 2003 The OSSP Project +## +## This file is part of OSSP res, a resource pool library +## which can be found at http://www.ossp.org/pkg/lib/res/. +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## +## Makefile.in: make(1) build procedure +## + +@SET_MAKE@ + +DESTDIR = +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +libdir = @libdir@ +includedir = @includedir@ +mandir = @mandir@ + +CC = @CC@ +CPPFLAGS = @CPPFLAGS@ +CFLAGS = @DEFS@ @CFLAGS@ +LDFLAGS = @LDFLAGS@ +LIBS = @LIBS@ +RM = rm -f +RMDIR = rmdir +SHTOOL = ./shtool +LIBTOOL = ./libtool +TRUE = true +POD2MAN = pod2man + +LIB_NAME = libres.la +LIB_OBJS = res.lo + +TST_NAME = res_test +TST_OBJS = res_test.o ts.o + +.SUFFIXES: +.SUFFIXES: .c .o .lo + +all: $(LIB_NAME) $(TST_NAME) + +.c.o: + $(CC) $(CPPFLAGS) $(CFLAGS) -c $< + +.c.lo: + @$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $< + +$(LIB_OBJS): Makefile +$(TST_OBJS): Makefile + +$(LIB_NAME): $(LIB_OBJS) + @$(LIBTOOL) --mode=link $(CC) -o $(LIB_NAME) $(LIB_OBJS) -rpath $(libdir) \ + -version-info `$(SHTOOL) version -l txt -d libtool VERSION` + +$(TST_NAME): $(TST_OBJS) $(LIB_NAME) + @$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $(TST_NAME) $(TST_OBJS) $(LIB_NAME) $(LIBS) + +man: res.3 +res.3: res.pod + V1=`$(SHTOOL) version -l txt -d short VERSION`; \ + V2=`$(SHTOOL) version -l txt -d long VERSION`; \ + D=`$(SHTOOL) version -l txt -d long VERSION | sed -e 's;.*(;;' -e 's;).*;;'`; \ + $(POD2MAN) --quotes=none \ + --section=3 --center="Resource Pools" \ + --release="$$D" --date="OSSP res $$V1" res.pod | \ + sed -e "s;RES_VERSION_STR;$$V2;" >res.3 + +check: $(TST_NAME) + @$(LIBTOOL) --mode=execute ./$(TST_NAME) + +install: + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix) + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir) + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(includedir) + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(libdir) + $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man3 + $(SHTOOL) install -c -m 755 res-config $(DESTDIR)$(bindir)/ + $(SHTOOL) install -c -m 644 res.h $(DESTDIR)$(includedir)/ + $(SHTOOL) install -c -m 644 res.3 $(DESTDIR)$(mandir)/man3/ + @$(LIBTOOL) --mode=install $(SHTOOL) install -c -m 644 libres.la $(DESTDIR)$(libdir)/ + +uninstall: + @$(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/libres.la + -$(RM) $(DESTDIR)$(mandir)/man3/res.3 + -$(RM) $(DESTDIR)$(includedir)/res.h + -$(RM) $(DESTDIR)$(bindir)/res-config + -$(RMDIR) $(DESTDIR)$(mandir)/man3 >/dev/null 2>&1 || $(TRUE) + -$(RMDIR) $(DESTDIR)$(mandir) >/dev/null 2>&1 || $(TRUE) + -$(RMDIR) $(DESTDIR)$(libdir) >/dev/null 2>&1 || $(TRUE) + -$(RMDIR) $(DESTDIR)$(includedir) >/dev/null 2>&1 || $(TRUE) + -$(RMDIR) $(DESTDIR)$(bindir) >/dev/null 2>&1 || $(TRUE) + -$(RMDIR) $(DESTDIR)$(prefix) >/dev/null 2>&1 || $(TRUE) + +clean: + -$(RM) $(LIB_NAME) $(LIB_OBJS) + -$(RM) $(TST_NAME) $(TST_OBJS) + -$(RM) -r .libs >/dev/null 2>&1 || $(TRUE) + -$(RM) *.o *.lo + +distclean: clean + -$(RM) config.log config.status config.cache + -$(RM) Makefile config.h res-config + -$(RM) libtool + +realclean: distclean + -$(RM) res.3 + -$(RM) configure config.h.in + -$(RM) shtool + -$(RM) ltmain.sh libtool.m4 config.guess config.sub + Index: ossp-pkg/res/README RCS File: /v/ossp/cvs/ossp-pkg/res/README,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/README,v' | diff -u /dev/null - -L'ossp-pkg/res/README' 2>/dev/null --- ossp-pkg/res/README +++ - 2024-05-09 09:56:18.067495811 +0200 @@ -0,0 +1,47 @@ + _ ___ ____ ____ ____ + |_|_ _ / _ \/ ___/ ___|| _ \ _ __ ___ ___ + _|_||_| | | | \___ \___ \| |_) | | '__/ _ \/ __| + |_||_|_| | |_| |___) |__) | __/ | | | __/\__ \ + |_|_|_| \___/|____/____/|_| |_| \___||___/ + + OSSP res - Resource Pools + Version 0.1.0 (30-Jan-2003) + + ABSTRACT + + OSSP res is a resource management library for dealing with + resource pools. [...] + + COPYRIGHT AND LICENSE + + Copyright (c) 2003 Ralf S. Engelschall + Copyright (c) 2003 The OSSP Project + + This file is part of OSSP res, a resource pool library which + can be found at http://www.ossp.org/pkg/lib/res/. + + Permission to use, copy, modify, and distribute this software for + any purpose with or without fee is hereby granted, provided that + the above copyright notice and this permission notice appear in all + copies. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED + WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT + OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + HOME AND DOCUMENTATION + + The documentation and latest release can be found on + + o http://www.ossp.org/pkg/lib/res/ + o ftp://ftp.ossp.org/pkg/lib/res/ + Index: ossp-pkg/res/THANKS RCS File: /v/ossp/cvs/ossp-pkg/res/THANKS,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/THANKS,v' | diff -u /dev/null - -L'ossp-pkg/res/THANKS' 2>/dev/null --- ossp-pkg/res/THANKS +++ - 2024-05-09 09:56:18.070074272 +0200 @@ -0,0 +1,13 @@ + _ ___ ____ ____ ____ + |_|_ _ / _ \/ ___/ ___|| _ \ _ __ ___ ___ + _|_||_| | | | \___ \___ \| |_) | | '__/ _ \/ __| + |_||_|_| | |_| |___) |__) | __/ | | | __/\__ \ + |_|_|_| \___/|____/____/|_| |_| \___||___/ + + OSSP res - Resource Pools + + THANKS + + Credit has to be given to the following people who contributed ideas, + bugfixes, hints, gave platform feedback, etc. (in alphabetical order): + Index: ossp-pkg/res/VERSION RCS File: /v/ossp/cvs/ossp-pkg/res/VERSION,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/VERSION,v' | diff -u /dev/null - -L'ossp-pkg/res/VERSION' 2>/dev/null --- ossp-pkg/res/VERSION +++ - 2024-05-09 09:56:18.072592376 +0200 @@ -0,0 +1,6 @@ + + VERSION -- Version Information for OSSP ex (syntax: Text) + [automatically generated and maintained by GNU shtool] + + This is OSSP ex, Version 1.0.2 (30-Jan-2003) + Index: ossp-pkg/res/aclocal.m4 RCS File: /v/ossp/cvs/ossp-pkg/res/aclocal.m4,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/res/aclocal.m4,v' | diff -u /dev/null - -L'ossp-pkg/res/aclocal.m4' 2>/dev/null --- ossp-pkg/res/aclocal.m4 +++ - 2024-05-09 09:56:18.088973932 +0200 @@ -0,0 +1,228 @@ +dnl ## +dnl ## OSSP res - Resource Pools +dnl ## Copyright (c) 2003 Ralf S. Engelschall +dnl ## Copyright (c) 2003 The OSSP Project +dnl ## +dnl ## This file is part of OSSP res, a resource pool library +dnl ## which can be found at http://www.ossp.org/pkg/lib/res/. +dnl ## +dnl ## Permission to use, copy, modify, and distribute this software for +dnl ## any purpose with or without fee is hereby granted, provided that +dnl ## the above copyright notice and this permission notice appear in all +dnl ## copies. +dnl ## +dnl ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +dnl ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +dnl ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +dnl ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +dnl ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +dnl ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +dnl ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +dnl ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +dnl ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +dnl ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +dnl ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +dnl ## SUCH DAMAGE. +dnl ## +dnl ## aclocal.m4: GNU Autoconf local macro definitions +dnl ## + +dnl ## +dnl ## Check whether compiler option works +dnl ## +dnl ## configure.in: +dnl ## AC_COMPILER_OPTION(, ,