beta 20
This commit is contained in:
parent
f8849e658f
commit
a5a99b3e22
|
|
@ -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 support, config option is 'pidlogname' (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
|
||||
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.
|
||||
fixed case for mklargefile.py in tests/Makefile.am
|
||||
added --enable-debug switch to configure for enabling extra
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@ bin_PROGRAMS=fcatcmd fcdcmd fducmd ffindcmd fgetcmd fgrabcmd fhostcmd \
|
|||
flscmd fmkdir fprocmd fput frmcmd frmdircmd fver fspmerge \
|
||||
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
|
||||
fcdcmd_SOURCES=fcdcmd.c printpro.c
|
||||
fprocmd_SOURCES=printpro.c fprocmd.c
|
||||
|
|
|
|||
11
configure.ac
11
configure.ac
|
|
@ -16,14 +16,17 @@ AC_MSG_RESULT(yes)
|
|||
else
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
AC_MSG_CHECKING([if building for SunOS 5])
|
||||
if test "x$build_os" = "xsolaris2" ; then
|
||||
AC_MSG_CHECKING([if building for Solaris 2.x])
|
||||
case $build_os in
|
||||
solaris2*)
|
||||
EX_LIBS="-lsocket -lnsl"
|
||||
AC_SUBST(EX_LIBS)
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
;;
|
||||
*)
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
AC_MSG_CHECKING([if building for Cygwin])
|
||||
case $host_os in
|
||||
*cygwin* ) AC_DEFINE(OS_CYGWIN,1,[Define if you are building for cygwin]) AC_MSG_RESULT(yes);;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
bin_PROGRAMS=fspscan
|
||||
EXTRA_DIST=auto_del.csh
|
||||
EXTRA_DIST=auto_del.csh rotate.py
|
||||
noinst_HEADERS=fspscan.h
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@ bin_PROGRAMS=fspd
|
|||
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
|
||||
fspd_CFLAGS=-DSYSCONFDIR="\"@sysconfdir@\"" $(AM_CFLAGS)
|
||||
fspd_LDADD=-L../common -lcommon
|
||||
fspd_LDADD=-L../common -lcommon $(EX_LIBS)
|
||||
|
||||
noinst_HEADERS=fifocache.h pidfile.h
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user