diff options
author | jlam <jlam@pkgsrc.org> | 1999-09-13 14:54:37 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 1999-09-13 14:54:37 +0000 |
commit | 61cb05422f94059a47d4d26b1e4b280674461d17 (patch) | |
tree | 02ca79aed19439dbf4900df56991ade3e5348a41 /net/ytalk/patches | |
parent | c73568cbc7503ca68644e37f2a559d249af4079e (diff) | |
download | pkgsrc-61cb05422f94059a47d4d26b1e4b280674461d17.tar.gz |
Update ytalk to 3.1.1. Changes from 3.1:
. try to look for the current machine's fqdn if hostname() doens't
include a '.'
. fixed the shell under Solaris (oops, broke it in 3.1!)
. misc autoconf fixes
. resizing didn't work with Linux and ncurses, fixed it
. YTalk now checks that connections are answered form the expected host;
if they aren't, it complains and shows the new hostname
. n-way talk sessions should now be free of duplicated users
. fixed the "readdress" option somewhat
. portability fixes for 64-bit machines (size_t instead of int)
Diffstat (limited to 'net/ytalk/patches')
-rw-r--r-- | net/ytalk/patches/patch-aa | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net/ytalk/patches/patch-aa b/net/ytalk/patches/patch-aa new file mode 100644 index 00000000000..e955846af72 --- /dev/null +++ b/net/ytalk/patches/patch-aa @@ -0,0 +1,23 @@ +$NetBSD: patch-aa,v 1.1 1999/09/13 14:54:40 jlam Exp $ + +--- configure.orig Sun May 9 21:11:25 1999 ++++ configure Mon Sep 13 10:36:44 1999 +@@ -833,6 +833,7 @@ + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + ++if false; then + echo $ac_n "checking for initscr in -lncurses""... $ac_c" 1>&6 + echo "configure:838: checking for initscr in -lncurses" >&5 + ac_lib_var=`echo ncurses'_'initscr | sed 'y%./+-%__p_%'` +@@ -879,6 +880,10 @@ + else + echo "$ac_t""no" 1>&6 + no_ncurses=1 ++fi ++else ++ # NetBSD doesn't need ncurses. ++ no_ncurses=1 + fi + + |