Index: ossp-pkg/fsl/AUTHORS RCS File: /v/ossp/cvs/ossp-pkg/fsl/AUTHORS,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/fsl/AUTHORS,v' | diff -u /dev/null - -L'ossp-pkg/fsl/AUTHORS' 2>/dev/null --- ossp-pkg/fsl/AUTHORS +++ - 2024-05-22 04:15:18.641093955 +0200 @@ -0,0 +1,9 @@ + + AUTHORS + + This is a list of authors who have written + or edited major parts of the OSSP fsl sources. + + Ralf S. Engelschall + Thomas Lotterer + Index: ossp-pkg/fsl/INSTALL RCS File: /v/ossp/cvs/ossp-pkg/fsl/INSTALL,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/fsl/INSTALL,v' | diff -u /dev/null - -L'ossp-pkg/fsl/INSTALL' 2>/dev/null --- ossp-pkg/fsl/INSTALL +++ - 2024-05-22 04:15:18.643650231 +0200 @@ -0,0 +1,17 @@ + __ _ + / _|___| | + | |_/ __| | + | _\__ \ | + |_| |___/_| + + OSSP fsl - Faking/Flexible Syslog Library + + INSTALLATION + + To install OSSP fsl into /path/to/fsl/ perform + the following steps in your shell: + + $ ./configure --prefix=/path/to/fsl + $ make + $ make install + Index: ossp-pkg/fsl/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/fsl/Makefile.in,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/fsl/Makefile.in,v' 2>/dev/null --- Makefile.in 2002/07/27 15:37:21 1.5 +++ Makefile.in 2002/07/27 18:13:51 1.6 @@ -59,6 +59,8 @@ TST_NAME = fsl_test TST_OBJS = fsl_test.o +FSL_CFGDIR = @FSL_CFGDIR@ + SUBDIRS = @SUBDIR_L2@ @SUBDIR_CFG@ @SUBDIR_PCRE@ .SUFFIXES: @@ -106,7 +108,7 @@ $(POD2MAN) --quotes=none \ --section=3 --center="Faking/Flexible Syslog Library" \ --release="$$D" --date="OSSP fsl $$V1" fsl.pod | \ - sed -e "s;FSL_VERSION_STR;$$V2;" >fsl.3 + sed -e "s;FSL_VERSION_STR;$$V2;" -e "s;FSL_CFGDIR;$(FSL_CFGDIR);g" >fsl.3 check: $(TST_NAME) @$(LIBTOOL) --mode=execute ./$(TST_NAME) Index: ossp-pkg/fsl/THANKS RCS File: /v/ossp/cvs/ossp-pkg/fsl/THANKS,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/fsl/THANKS,v' | diff -u /dev/null - -L'ossp-pkg/fsl/THANKS' 2>/dev/null --- ossp-pkg/fsl/THANKS +++ - 2024-05-22 04:15:18.650311413 +0200 @@ -0,0 +1,8 @@ + + THANKS + + Credit has to be given to the following people who contributed ideas, + bugfixes, hints, gave platform feedback, etc. (in alphabetical order): + + o Christoph Schug + Index: ossp-pkg/fsl/configure.ac RCS File: /v/ossp/cvs/ossp-pkg/fsl/configure.ac,v rcsdiff -q -kk '-r1.7' '-r1.8' -u '/v/ossp/cvs/ossp-pkg/fsl/configure.ac,v' 2>/dev/null --- configure.ac 2002/07/27 15:37:21 1.7 +++ configure.ac 2002/07/27 18:13:51 1.8 @@ -98,6 +98,8 @@ [ fsl_cfgdir="${prefix}/etc/fsl" ] )dnl AC_DEFINE_UNQUOTED(FSL_CFGDIR, "$fsl_cfgdir", [Define configuration directory]) +FSL_CFGDIR="$fsl_cfgdir" +AC_SUBST(FSL_CFGDIR) AC_MSG_RESULT([$fsl_cfgdir]) AC_MSG_CHECKING(for debugging using a l2spec)