diff options
Diffstat (limited to 'comms/hylafax/patches/patch-ah')
-rw-r--r-- | comms/hylafax/patches/patch-ah | 36 |
1 files changed, 25 insertions, 11 deletions
diff --git a/comms/hylafax/patches/patch-ah b/comms/hylafax/patches/patch-ah index 5ee51693347..72817a2776e 100644 --- a/comms/hylafax/patches/patch-ah +++ b/comms/hylafax/patches/patch-ah @@ -1,12 +1,26 @@ -$NetBSD: patch-ah,v 1.1.1.1 1999/08/11 06:04:29 rh Exp $ +$NetBSD: patch-ah,v 1.2 2000/08/29 17:08:38 abs Exp $ ---- config.h.in.orig Sat Feb 14 11:46:29 1998 -+++ config.h.in Mon Apr 12 17:49:10 1999 -@@ -53,6 +53,7 @@ - * NB: The Unix-domain support is unfinished. - */ - #define FAX_USER "@FAXUID@" /* account name of the ``fax user'' */ -+#define FAX_GROUP "@FAXGID@" /* group name of the ``fax user'' */ - #define FAX_SERVICE "hylafax" /* client-server service name */ - #define FAX_PROTONAME "tcp" /* protocol used by client+server */ - #define FAX_DEFPORT 4559 /* port to use if service is unknown */ +--- etc/faxaddmodem.sh.in.orig Thu Jul 15 11:48:43 1999 ++++ etc/faxaddmodem.sh.in +@@ -46,6 +46,7 @@ + SPOOL=@SPOOL@ + + SPEED= ++TTY= + while [ x"$1" != x"" ] ; do + case $1 in + -s) SPEED=$2; shift;; +@@ -91,10 +92,11 @@ + SVR4UULCKN=$LIBEXEC/lockname # SVR4 UUCP lock name construction program + ONDELAY=$LIBEXEC/ondelay # prgm to open devices blocking on carrier + CAT="$CAT -u" # something to do unbuffered reads and writes +-FAX=fax # identity of the fax user ++FAX=@FAXUID@ # identity of the fax user ++FAXGID=@FAXGID@ + GROUP=/etc/group # where to go for group entries + PROTOGID=$FAXGID # group who's gid we use for FAX user +-defPROTOGID=10 # use this gid if PROTOGID doesn't exist ++defPROTOGID=117 # use this gid if PROTOGID doesn't exist + MODEMCONFIG=$SPOOL/config # location of prototype modem config files + RMCMD="$RM -f" # forced removal + |