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.[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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
19
configure.ac
19
configure.ac
|
|
@ -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
|
||||||
EX_LIBS="-lsocket -lnsl"
|
solaris2*)
|
||||||
AC_SUBST(EX_LIBS)
|
EX_LIBS="-lsocket -lnsl"
|
||||||
AC_MSG_RESULT(yes)
|
AC_SUBST(EX_LIBS)
|
||||||
else
|
AC_MSG_RESULT(yes)
|
||||||
AC_MSG_RESULT(no)
|
;;
|
||||||
fi
|
*)
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
;;
|
||||||
|
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);;
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user