+May 29, 2001
+ (tim) [configure config.site] change default spool dir to hylafax.
+ Break up VAR2 to help out sed on HP (thanks to Alan O'Keefe
+ <aokeefe@primus.com.au> for testing)
+ [faxd/ModemServer.c++] add additional reset to ModemServer::setupModem
+ sugested by Bernd Proissl <lists@proissl.de>
+
May 27, 2001
(tim) [pkg/Makefile.in make.links make_proto.sh.in cproto.stub.in
sproto.stub.in] "make package" fixes
#DIR_LIBDATA="/usr/lib/fax" # directory for client data
#DIR_LIBEXEC="/usr/lib/fax" # directory for libraries&hidden apps
#DIR_MAN="/usr/local/man" # directory for manual pages
-#DIR_SPOOL="/var/spool/fax" # directory for spooling area
+#DIR_SPOOL="/var/spool/hylafax" # directory for spooling area
#DIR_SBIN="/var/spool/fax/bin" # directory for system apps
#DIR_LOCKS="/usr/spool/locks" # directory for UUCP lock files
#FONTMAP="/usr/share/ghostscript/3.33" # directorys containing Fontmap files
DIR_SBIN=/usr/local/sbin
DIR_LIBDATA=/usr/local/lib/fax
DIR_LIBEXEC=$DIR_SBIN
-DIR_SPOOL=/var/spool/fax
+DIR_SPOOL=/var/spool/hylafax
DIR_HTML=/var/httpd/htdocs/hylafax
DIR_CGI=/var/httpd/cgi-bin
PATH_DPSRIP=$DIR_LIBEXEC/ps2fax.exe
LIBDB
LLDOPTS
LN
-LN_S
-MACHDEPLIBS
+LN_S"
+
+VAR3="MACHDEPLIBS
MAKEDSOINCLUDE
MAN
MANDIR DIR_MAN
}
dumpvals()
{
- (echo "$VAR1"; echo "$VAR2") |
+ (echo "$VAR1"; echo "$VAR2" ; echo "$VAR3") |
while read a b; do eval c=\$${b:-$a}; echo "${b:-$a}='$c'"; done
}
conffifo
confsed1
confsed2
+ confsed3
conftestmmap
confx confy
confMakefile
WARNING="Warning, this file was automatically created by the HylaFAX configure script"
dumpvars "$VAR1" CCOMPILER CXXCOMPILER | sort>confsed1
dumpvars "$VAR2" CCOMPILER CXXCOMPILER | sort>confsed2
- $RM xdefs; sed -f confsed1 $SRCDIR/defs.in | sed -f confsed2 >$1
+ dumpvars "$VAR3" CCOMPILER CXXCOMPILER | sort>confsed3
+ $RM xdefs; sed -f confsed1 $SRCDIR/defs.in | sed -f confsed2 | sed -f confsed3 >$1
}
# NB: save original values for use in checks below
# the comparison (this assumes dates are used in lines
# of the form DATE: @DATE@).
#
- $RM $F.new; $SED -f confsed1 $SRCDIR/$F.in | $SED -f confsed2 > $F.new
+ $RM $F.new; $SED -f confsed1 $SRCDIR/$F.in | $SED -f confsed2 | $SED -f confsed3 > $F.new
$RM confx; $SED '/DATE:/d' $F.new >confx
$RM confy; $SED '/DATE:/d' $F >confy 2>/dev/null
if cmp -s confx confy >/dev/null 2>&1; then
fi
else
Note "Creating $F from $SRCDIR/$F.in"
- if $SED -f confsed1 $SRCDIR/$F.in | $SED -f confsed2 >$F.new; then
+ if $SED -f confsed1 $SRCDIR/$F.in | $SED -f confsed2 | $SED -f confsed3 >$F.new; then
$RM $F; $MV $F.new $F; $CHMOD 444 $F
else
cat 1>&2 <<EOF
Help, there was a problem crafting $F from $F.in.
The command:
- $SED -f confsed1 $SRCDIR/$F.in | $SED -f confsed2 >$F.new
+ $SED -f confsed1 $SRCDIR/$F.in | $SED -f confsed2 | $SED -f confsed3 >$F.new
failed. Aborting without cleaning up files so you can take a look...
EOF