diff options
author | lukem <lukem@pkgsrc.org> | 2004-08-10 01:58:11 +0000 |
---|---|---|
committer | lukem <lukem@pkgsrc.org> | 2004-08-10 01:58:11 +0000 |
commit | e1fdf88edd2ca0d4bc6b08cb95c7c20741e06216 (patch) | |
tree | 185ba8708aded3d45154774497611ac3459a505c /net | |
parent | 888e93aac79b4aeccaf7f9f39f2e909c26667fe9 (diff) | |
download | pkgsrc-e1fdf88edd2ca0d4bc6b08cb95c7c20741e06216.tar.gz |
Update to tnftpd 20040810. Notable changes:
* remove use of setjmp/longjmp
* improve safety of signal handlers
* fix minor memory leaks
* improve portability to BSD/OS 3.0
Diffstat (limited to 'net')
-rw-r--r-- | net/tnftpd/Makefile | 5 | ||||
-rw-r--r-- | net/tnftpd/distinfo | 7 | ||||
-rw-r--r-- | net/tnftpd/patches/patch-aa | 19 |
3 files changed, 5 insertions, 26 deletions
diff --git a/net/tnftpd/Makefile b/net/tnftpd/Makefile index d7ffc9e21b0..198f082ad52 100644 --- a/net/tnftpd/Makefile +++ b/net/tnftpd/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.8 2004/06/08 12:24:00 cjep Exp $ +# $NetBSD: Makefile,v 1.9 2004/08/10 01:58:11 lukem Exp $ # -DISTNAME= tnftpd-20031217 -PKGREVISION= 1 +DISTNAME= tnftpd-20040810 CATEGORIES= net MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/tnftp/ diff --git a/net/tnftpd/distinfo b/net/tnftpd/distinfo index 4d60a638288..24be3d992f7 100644 --- a/net/tnftpd/distinfo +++ b/net/tnftpd/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.4 2003/12/20 13:38:37 grant Exp $ +$NetBSD: distinfo,v 1.5 2004/08/10 01:58:11 lukem Exp $ -SHA1 (tnftpd-20031217.tar.gz) = d5b1f7b87862eaa67a3660272f3ffc0e240cf62b -Size (tnftpd-20031217.tar.gz) = 177483 bytes -SHA1 (patch-aa) = 31924f4595744db9e0c04f4b334f6fc30b39e0e2 +SHA1 (tnftpd-20040810.tar.gz) = 1f00770edf0ae031183f9a940d9b776f6610e4ea +Size (tnftpd-20040810.tar.gz) = 178638 bytes diff --git a/net/tnftpd/patches/patch-aa b/net/tnftpd/patches/patch-aa deleted file mode 100644 index 85b590455f1..00000000000 --- a/net/tnftpd/patches/patch-aa +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2003/12/20 13:38:37 grant Exp $ - ---- src/Makefile.in.orig 2002-12-09 00:05:36.000000000 +1100 -+++ src/Makefile.in -@@ -10,12 +10,13 @@ exec_prefix = @exec_prefix@ - bindir = @bindir@ - mandir = @mandir@ - sbindir = @sbindir@ -+sysconfdir = @sysconfdir@ - - mandircat5 = ${mandir}/cat5 - mandircat8 = ${mandir}/cat8 - - CC = @CC@ --CFLAGS = -I${srcdir} -I${srcdir}/.. -I. -I.. @INCLUDES@ -DHAVE_TNFTPD_H=1 @CFLAGS@ -+CFLAGS = -I${srcdir} -I${srcdir}/.. -I. -I.. @INCLUDES@ -DHAVE_TNFTPD_H=1 @CFLAGS@ -D_DEFAULT_CONFDIR=\"${sysconfdir}\" - LIBS = @LIBS@ - LDFLAGS = @LDFLAGS@ - |