Check-in Number:
|
2390 | |
Date: |
2002-Jul-27 20:13:51 (local)
2002-Jul-27 18:13:51 (UTC) |
User: | rse |
Branch: | |
Comment: |
source tree cleanups and fixes |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/fsl/AUTHORS -> 1.1
*** /dev/null Tue Mar 11 06:02:26 2025
--- - Tue Mar 11 06:02:26 2025
***************
*** 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 <rse@engelschall.com>
+ Thomas Lotterer <thomas@lotterer.net>
+
|
|
ossp-pkg/fsl/INSTALL -> 1.1
*** /dev/null Tue Mar 11 06:02:26 2025
--- - Tue Mar 11 06:02:26 2025
***************
*** 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
+
|
|
ossp-pkg/fsl/Makefile.in 1.5 -> 1.6
--- 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)
|
|
ossp-pkg/fsl/THANKS -> 1.1
*** /dev/null Tue Mar 11 06:02:26 2025
--- - Tue Mar 11 06:02:26 2025
***************
*** 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 <chris@schug.net>
+
|
|
ossp-pkg/fsl/configure.ac 1.7 -> 1.8
--- 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)
|
|