Skip to content

Commit

Permalink
Update ytalk to 3.1.1. Changes from 3.1:
Browse files Browse the repository at this point in the history
  . 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)
  • Loading branch information
johnnylam88 committed Sep 13, 1999
1 parent c73568c commit 61cb054
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
6 changes: 3 additions & 3 deletions net/ytalk/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.3 1999/07/05 07:18:57 garbled Exp $
# $NetBSD: Makefile,v 1.4 1999/09/13 14:54:37 jlam Exp $

DISTNAME= ytalk-3.1
DISTNAME= ytalk-3.1.1
CATEGORIES= net
MASTER_SITES= http://www.eleves.ens.fr:8080/home/espel/ytalk/\
${MASTER_SITE_SUNSITE:=system/network/chat/}
Expand All @@ -9,6 +9,6 @@ MAINTAINER= [email protected]
HOMEPAGE= http://www.eleves.ens.fr:8080/home/espel/ytalk/

GNU_CONFIGURE= yes
LDFLAGS+= -Wl,-R${X11BASE}/lib
USE_X11= yes

.include "../../mk/bsd.pkg.mk"
4 changes: 2 additions & 2 deletions net/ytalk/files/md5
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
$NetBSD: md5,v 1.1.1.1 1999/04/10 21:08:48 tron Exp $
$NetBSD: md5,v 1.2 1999/09/13 14:54:38 jlam Exp $

MD5 (ytalk-3.1.tar.gz) = faefb277a3347ff85c4b63a9443743ee
MD5 (ytalk-3.1.1.tar.gz) = e678401ab48be6728ec700458ad8ace0
3 changes: 3 additions & 0 deletions net/ytalk/files/patch-sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
$NetBSD: patch-sum,v 1.1 1999/09/13 14:54:38 jlam Exp $

MD5 (patch-aa) = 0ca598bd746376bf7d9cbbcb510675ee
23 changes: 23 additions & 0 deletions net/ytalk/patches/patch-aa
Original file line number Diff line number Diff line change
@@ -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


0 comments on commit 61cb054

Please sign in to comment.