diff options
author | fredb <fredb@pkgsrc.org> | 2002-03-09 17:17:05 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2002-03-09 17:17:05 +0000 |
commit | 5d01117aac6d1e532bb274191d898dcf314dedcb (patch) | |
tree | 3838d9c3bc3bd889de794ea051444073bd9ea5d5 /comms/mgetty+sendfax/patches | |
parent | b78a253de0a30d71a145e1f5b27e862735fe35e6 (diff) | |
download | pkgsrc-5d01117aac6d1e532bb274191d898dcf314dedcb.tar.gz |
Update mgetty+sendfax to 1.1.28. From the ChangeLog file:
* release 1.1.28
* faxrec.c: replace "0"'s by "STDIN" (readability)
* doc/mgetty.texi-in: some updates
* doc/faxrunq.1in, doc/faxrunqd.8in: document calling convention
changes (as below)
* fax/faxrunq(d).in: pass (last) sendfax return code as 2nd
argument to success/failure program
* policy.h, utmp.c: incorporate some NetBSD changes
* various: change time() prototype to "time_t time(time_t *tloc)"
* mgetty.h, syslibs.h, logfile.c: some #ifdef fiddling for Darwin
* doc/faxrunq.1in, doc/faxrunqd.8in: document more stuff
* fax/faxrunq, fax/faxrunqd: don't run queue if a file
$FAX_SPOOL_OUT/stop exists.
* login.c: MAX_LOGIN_ARGS handling reworked (claimed N, but allowed
only N-1), plus warning message improved. <Juergen.Kosel@gmx.de>
* release 1.1.27
* doc/mgetty.texi-in: work on isdn4linux notes
* cnd.c (cndtable): add swedish ZyXEL caller ID format (T. Lundgren)
* cnd.c (cndtable): add "CALLED NUMBER:" (Jan Oberlaender/i4l)
* various: adaptions to OpenBSD (similar to NetBSD)
* mgetty.h: patch to adapt to Linux/S390 (PTR_IS_LONG)
* frontends/www/: integrate new version from Neko
Diffstat (limited to 'comms/mgetty+sendfax/patches')
-rw-r--r-- | comms/mgetty+sendfax/patches/patch-ac | 10 | ||||
-rw-r--r-- | comms/mgetty+sendfax/patches/patch-ae | 15 | ||||
-rw-r--r-- | comms/mgetty+sendfax/patches/patch-af | 13 |
3 files changed, 17 insertions, 21 deletions
diff --git a/comms/mgetty+sendfax/patches/patch-ac b/comms/mgetty+sendfax/patches/patch-ac index 69f4642ecfb..8e6604ee52c 100644 --- a/comms/mgetty+sendfax/patches/patch-ac +++ b/comms/mgetty+sendfax/patches/patch-ac @@ -1,11 +1,11 @@ -$NetBSD: patch-ac,v 1.2 1998/11/15 20:45:30 tron Exp $ +$NetBSD: patch-ac,v 1.3 2002/03/09 17:17:06 fredb Exp $ ---- voice/Makefile.orig Mon Dec 29 23:06:36 1997 -+++ voice/Makefile Mon Dec 29 23:07:18 1997 -@@ -89,11 +89,11 @@ - done +--- voice/Makefile.orig Sun Dec 23 09:08:13 2001 ++++ voice/Makefile +@@ -92,11 +92,11 @@ $(INSTALL) -m 644 man/man1/zplay.1 $(MAN1DIR) $(INSTALL) -m 644 man/man1/pvf.1 $(MAN1DIR) + $(INSTALL) -m 644 man/man8/vgetty.8 $(MAN8DIR) - cd $(MAN1DIR); \ - for i in $(PVFTOOLS); \ - do \ diff --git a/comms/mgetty+sendfax/patches/patch-ae b/comms/mgetty+sendfax/patches/patch-ae index 14ecc391cef..8fa6c9d5af8 100644 --- a/comms/mgetty+sendfax/patches/patch-ae +++ b/comms/mgetty+sendfax/patches/patch-ae @@ -1,7 +1,7 @@ -$NetBSD: patch-ae,v 1.1 1998/11/15 20:45:30 tron Exp $ +$NetBSD: patch-ae,v 1.2 2002/03/09 17:17:06 fredb Exp $ ---- doc/mgetty.texi-in.orig Sun Jul 5 23:02:13 1998 -+++ doc/mgetty.texi-in Sun Nov 15 21:05:27 1998 +--- doc/mgetty.texi-in.orig Sun Jan 6 11:40:55 2002 ++++ doc/mgetty.texi-in @@ -7,6 +7,10 @@ @finalout @@ -13,3 +13,12 @@ $NetBSD: patch-ae,v 1.1 1998/11/15 20:45:30 tron Exp $ This is the online documentation for the mgetty + sendfax package. +@@ -3718,7 +3722,7 @@ + @code{man ttys} (there is no @file{/etc/inittab}). + + Open issues: +-@itemize ++@itemize @bullet + @c @item how to access external serial ports? + @item is it better to use @file{/dev/cu.*} or @file{/dev/tty.*}? + @item how is tty locking done? Couldn't find UUCP lock files diff --git a/comms/mgetty+sendfax/patches/patch-af b/comms/mgetty+sendfax/patches/patch-af deleted file mode 100644 index a1c50cbef44..00000000000 --- a/comms/mgetty+sendfax/patches/patch-af +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-af,v 1.1 1998/11/16 02:36:22 tron Exp $ - ---- utmp.c.orig Wed May 28 01:44:00 1997 -+++ utmp.c Mon Nov 16 03:08:49 1998 -@@ -58,7 +58,7 @@ - * [NB: If we wanted to set UT_INIT, it would have to be an entry with - * empty ut_name and ut_host] - */ --#ifdef __FreeBSD__ -+#if defined(__FreeBSD__) || defined(__NetBSD__) - struct utmp utmp; - extern void login _PROTO(( struct utmp * utmp )); - |