diff options
author | rh <rh@pkgsrc.org> | 2000-06-12 18:40:54 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2000-06-12 18:40:54 +0000 |
commit | 90f54c31ca4ee2bf911a78f3f2e8f88efc07fcbb (patch) | |
tree | a47fe5196087a919445ed73cdf54d654db2d18ac /comms/minicom/patches | |
parent | 6ed0dee62406d4b0fa0ed9dd6e280fb861c4f68e (diff) | |
download | pkgsrc-90f54c31ca4ee2bf911a78f3f2e8f88efc07fcbb.tar.gz |
Update minicom to 0.83.1
Notable changes include:
- An old signal handling bug has been fixed. It sometimes caused an
eternal loop of "Killed by signal x" - "Resetting modem" - "Killed
by signal y" when minicom was aborted unexpectedly, and then it could
only be killed with kill -9 (SIGKILL).
- Now there is also a setting in the Bps/par/bits section of the Serial
port setup menu to use two stop bits.
- Some patches for SVR4 lock file handling.
- Fixed some compilation errors when -D_HAVE_MACROS is not defined
in the makefile.
- possible overflows fixed in inputting the manual dialing string and
search string in the phone dir.
- user-configurable options to disable writing the logfile or select
which things to write there
- the command line option -d now accepts multiple numbers or names as
the parameter. Separate them with commas and use no spaces around it.
- a fix for the script timeout command that sometimes didn't work right.
- now you can move an entry up/down in the phone directory.
- flag %f added to the upload/download protocol program command lines to
allow passing the port file descriptor to c-kermit
- support for DTE speed 230400 bps
- newline delay option added in the terminal settings
- multiline option added to untag all phonedir entries with the same name
when one of them answers
Diffstat (limited to 'comms/minicom/patches')
-rw-r--r-- | comms/minicom/patches/patch-aa | 55 | ||||
-rw-r--r-- | comms/minicom/patches/patch-ac | 10 |
2 files changed, 17 insertions, 48 deletions
diff --git a/comms/minicom/patches/patch-aa b/comms/minicom/patches/patch-aa index 3b47861e536..8af099bcfe2 100644 --- a/comms/minicom/patches/patch-aa +++ b/comms/minicom/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.6 1999/04/23 19:55:56 mycroft Exp $ +$NetBSD: patch-aa,v 1.7 2000/06/12 18:40:55 rh Exp $ ---- Makefile.orig Sat Jul 25 21:05:46 1998 -+++ Makefile Wed Apr 14 22:34:08 1999 +--- Makefile.orig Tue Apr 25 17:42:32 2000 ++++ Makefile Mon Jun 12 20:21:05 2000 @@ -22,10 +22,10 @@ - # + # enochw@scn.org Oct 99: flags for UWIN 2.0 (Unix for Windows) # Where to install things for Linux sites (FSSTND) -BINDIR = /usr/bin @@ -22,10 +22,10 @@ $NetBSD: patch-aa,v 1.6 1999/04/23 19:55:56 mycroft Exp $ # MANDIR = /usr/local/man/man1 +# Where to install things for NetBSD sites. -+BINDIR = $(PREFIX)/bin -+LIBDIR = $(PREFIX)/etc/minicom -+DOCDIR = $(PREFIX)/share/doc/minicom -+MANDIR = $(PREFIX)/man/man1 ++BINDIR = ${PREFIX}/bin ++LIBDIR = ${PREFIX}/etc/minicom ++DOCDIR = ${PREFIX}/share/doc/minicom ++MANDIR = ${PREFIX}/man/man1 + # Where to install things for "normal" sites. # BINDIR = /usr/local/bin @@ -47,10 +47,11 @@ $NetBSD: patch-aa,v 1.6 1999/04/23 19:55:56 mycroft Exp $ # Take these compilation flags for FreeBSD. #FLAGS = -Wall -D_POSIX -D_BSD43 -D_SELECT -D_DCDFLOW -@@ -153,6 +159,14 @@ +@@ -173,6 +179,14 @@ + #LFLAGS = -s #PROGS = minicom runscript ascii-xfr keyserv #LIBS = - ++ +# Take these compilation flags for NetBSD. +FLAGS = -Wall -D_POSIX -D_BSD43 -D_SELECT -D_DCDFLOW -I$(PREFIX)/include -DBINDIR=\"$(BINDIR)\" +PROGS = minicom runscript ascii-xfr @@ -58,38 +59,6 @@ $NetBSD: patch-aa,v 1.6 1999/04/23 19:55:56 mycroft Exp $ +INTL = -Wl,-R$(PREFIX)/lib -L$(PREFIX)/lib -lintl +LIBS = $(INTL) -lcurses -ltermcap +CC = cc -+ - # Nothing should have to change beneath this line - - SRCS = minicom.c vt100.c config.c help.c updown.c \ -@@ -188,13 +202,13 @@ - $(CC) $(LFLAGS) -o minicom $(MOBJS) $(LIBS) - - po: dummy -- make -C po -+ ${MAKE} -C po - keyserv: $(KOBJS) - $(CC) -o keyserv $(LFLAGS) $(KOBJS) $(LIBS) - - runscript: $(SOBJS) -- $(CC) -o runscript $(LFLAGS) $(SOBJS) -+ $(CC) -o runscript $(LFLAGS) $(SOBJS) $(INTL) - - ascii-xfr: ascii-xfr.o - $(CC) -s -o ascii-xfr $(LFLAGS) ascii-xfr.o -@@ -241,12 +255,12 @@ - dummy: - - install: $(PROGS) -- make -C po install R=$(R) -+ ${MAKE} -C po install R=$(R) - sh install.sh $(R)$(LIBDIR) $(R)$(BINDIR) $(R)$(MANDIR) $(R)$(DOCDIR) - - clobber: - rm -f *.o *~ minicom keyserv runscript ascii-xfr -- make -C po clean -+ ${MAKE} -C po clean + # Nothing should have to change beneath this line - clean: - rm -f *.o diff --git a/comms/minicom/patches/patch-ac b/comms/minicom/patches/patch-ac index 0ea75aeab6a..2ff9690f55f 100644 --- a/comms/minicom/patches/patch-ac +++ b/comms/minicom/patches/patch-ac @@ -1,9 +1,9 @@ -$NetBSD: patch-ac,v 1.3 1999/04/14 21:13:24 tron Exp $ +$NetBSD: patch-ac,v 1.4 2000/06/12 18:40:55 rh Exp $ ---- updown.c.orig Thu Jul 9 14:49:47 1998 -+++ updown.c Sun Dec 13 18:34:51 1998 -@@ -230,7 +230,7 @@ - do_log(cmdline); /* jl 22.06.97 */ +--- updown.c.orig Thu Mar 16 10:44:26 2000 ++++ updown.c Mon Jun 12 20:24:37 2000 +@@ -238,7 +238,7 @@ + do_log(cmdline); /* jl 22.06.97 */ if (P_PFULL(g) == 'N') { - win = wopen(10, 7, 70, 13, BSINGLE, stdattr, mfcolor, mbcolor, 1, 0, 1); |