This commit is contained in:
hsn 2004-10-26 17:06:45 +00:00
parent f8849e658f
commit a5a99b3e22
5 changed files with 17 additions and 13 deletions

View File

@ -1,4 +1,4 @@
Version - not yet released version 2.8.1b20 - 26 Oct 2004
Added pidfile.[c|h] from FreeBSD and modified it to fit in (hoaxter) Added pidfile.[c|h] from FreeBSD and modified it to fit in (hoaxter)
Added pidfile support, config option is 'pidlogname' (hoaxter) Added pidfile support, config option is 'pidlogname' (hoaxter)
Replaced .file information from INSTALL with a hint to man 1 fspd (hoaxter) Replaced .file information from INSTALL with a hint to man 1 fspd (hoaxter)
@ -55,7 +55,7 @@ Version - not yet released
lamerz guide added lamerz guide added
text rotate tool added text rotate tool added
Version 2.8.1b19 - 11 Jan 2004 version 2.8.1b19 - 11 jan 2004
sven has added fspget URL command to setup.sh. sven has added fspget URL command to setup.sh.
fixed case for mklargefile.py in tests/Makefile.am fixed case for mklargefile.py in tests/Makefile.am
added --enable-debug switch to configure for enabling extra added --enable-debug switch to configure for enabling extra

View File

@ -4,7 +4,8 @@ bin_PROGRAMS=fcatcmd fcdcmd fducmd ffindcmd fgetcmd fgrabcmd fhostcmd \
flscmd fmkdir fprocmd fput frmcmd frmdircmd fver fspmerge \ flscmd fmkdir fprocmd fput frmcmd frmdircmd fver fspmerge \
fstatcmd fstatcmd
LDADD=-L../common -L../bsd_src -L../client -lclient -lcommon -lbsdfsp LDADD=-L../common -L../bsd_src -L../client -lclient -lcommon -lbsdfsp $(EX_LIBS)
fspmerge_SOURCES=merge.c printpro.c fspprof.l fspmerge_SOURCES=merge.c printpro.c fspprof.l
fcdcmd_SOURCES=fcdcmd.c printpro.c fcdcmd_SOURCES=fcdcmd.c printpro.c
fprocmd_SOURCES=printpro.c fprocmd.c fprocmd_SOURCES=printpro.c fprocmd.c

View File

@ -16,14 +16,17 @@ AC_MSG_RESULT(yes)
else else
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
fi fi
AC_MSG_CHECKING([if building for SunOS 5]) AC_MSG_CHECKING([if building for Solaris 2.x])
if test "x$build_os" = "xsolaris2" ; then case $build_os in
solaris2*)
EX_LIBS="-lsocket -lnsl" EX_LIBS="-lsocket -lnsl"
AC_SUBST(EX_LIBS) AC_SUBST(EX_LIBS)
AC_MSG_RESULT(yes) AC_MSG_RESULT(yes)
else ;;
*)
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
fi ;;
esac
AC_MSG_CHECKING([if building for Cygwin]) AC_MSG_CHECKING([if building for Cygwin])
case $host_os in case $host_os in
*cygwin* ) AC_DEFINE(OS_CYGWIN,1,[Define if you are building for cygwin]) AC_MSG_RESULT(yes);; *cygwin* ) AC_DEFINE(OS_CYGWIN,1,[Define if you are building for cygwin]) AC_MSG_RESULT(yes);;

View File

@ -1,3 +1,3 @@
bin_PROGRAMS=fspscan bin_PROGRAMS=fspscan
EXTRA_DIST=auto_del.csh EXTRA_DIST=auto_del.csh rotate.py
noinst_HEADERS=fspscan.h noinst_HEADERS=fspscan.h

View File

@ -5,6 +5,6 @@ bin_PROGRAMS=fspd
fspd_SOURCES=file.c host.c main.c conf.c server.c fifocache.c \ fspd_SOURCES=file.c host.c main.c conf.c server.c fifocache.c \
log.c iprange.c acl.c path.c random.c pidfile.c log.c iprange.c acl.c path.c random.c pidfile.c
fspd_CFLAGS=-DSYSCONFDIR="\"@sysconfdir@\"" $(AM_CFLAGS) fspd_CFLAGS=-DSYSCONFDIR="\"@sysconfdir@\"" $(AM_CFLAGS)
fspd_LDADD=-L../common -lcommon fspd_LDADD=-L../common -lcommon $(EX_LIBS)
noinst_HEADERS=fifocache.h pidfile.h noinst_HEADERS=fifocache.h pidfile.h