svn commit: r315454 - in head/ftp/tnftpd: . files
Martin Wilke
miwi at FreeBSD.org
Thu Mar 28 09:33:44 UTC 2013
Author: miwi
Date: Thu Mar 28 09:33:42 2013
New Revision: 315454
URL: http://svnweb.freebsd.org/changeset/ports/315454
Log:
- Update to 20130325
PR: 177377
Submitted by: Rudolf Cejka <cejkar at fit.vutbr.cz> (maintainer)
Deleted:
head/ftp/tnftpd/files/patch-libnetbsd-Makefile.am
Modified:
head/ftp/tnftpd/Makefile (contents, props changed)
head/ftp/tnftpd/distinfo (contents, props changed)
head/ftp/tnftpd/files/patch-configure.ac (contents, props changed)
head/ftp/tnftpd/files/patch-src-Makefile.am (contents, props changed)
head/ftp/tnftpd/files/patch-src-ftpd.c (contents, props changed)
head/ftp/tnftpd/files/patch-src-logutmp.c (contents, props changed)
head/ftp/tnftpd/files/patch-src-logwtmp.c (contents, props changed)
head/ftp/tnftpd/files/patch-tnftpd.h (contents, props changed)
Modified: head/ftp/tnftpd/Makefile
==============================================================================
--- head/ftp/tnftpd/Makefile Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/Makefile Thu Mar 28 09:33:42 2013 (r315454)
@@ -6,7 +6,7 @@
#
PORTNAME= tnftpd
-PORTVERSION= 20100324
+PORTVERSION= 20130325
CATEGORIES= ftp ipv6
MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/
Modified: head/ftp/tnftpd/distinfo
==============================================================================
--- head/ftp/tnftpd/distinfo Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/distinfo Thu Mar 28 09:33:42 2013 (r315454)
@@ -1,2 +1,2 @@
-SHA256 (tnftpd-20100324.tar.gz) = ff6b7c39f1bbdb9686a2c92652a59e8c81f1268dd329ff582db91a8ed76c599c
-SIZE (tnftpd-20100324.tar.gz) = 511110
+SHA256 (tnftpd-20130325.tar.gz) = 331006f0bcee593af3f4faaaf1de8db825e2aa60449be1c961916b37d562e147
+SIZE (tnftpd-20130325.tar.gz) = 518350
Modified: head/ftp/tnftpd/files/patch-configure.ac
==============================================================================
--- head/ftp/tnftpd/files/patch-configure.ac Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/files/patch-configure.ac Thu Mar 28 09:33:42 2013 (r315454)
@@ -1,8 +1,13 @@
---- configure.ac.orig 2010-03-24 05:31:39.000000000 -0700
-+++ configure.ac 2012-05-03 15:55:32.000000000 -0700
-@@ -87,3 +87,4 @@
- #
--AC_PROG_CC
-+AM_PROG_CC_C_O
-+AM_PROG_AR
- AC_PROG_AWK
+Fix compilation error.
+
+--- configure.ac.orig 2013-03-25 04:52:48.000000000 +0100
++++ configure.ac 2013-03-25 17:03:53.000000000 +0100
+@@ -22,6 +22,8 @@
+ AM_INIT_AUTOMAKE([-Wall -Werror foreign nostdinc silent-rules])
+ AM_MAINTAINER_MODE()
+
++AM_PROG_AR()
++
+ LT_PREREQ([2.4])
+ LT_INIT()
+
Modified: head/ftp/tnftpd/files/patch-src-Makefile.am
==============================================================================
--- head/ftp/tnftpd/files/patch-src-Makefile.am Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/files/patch-src-Makefile.am Thu Mar 28 09:33:42 2013 (r315454)
@@ -12,7 +12,7 @@ a build.
+ logutmp.c \
+ logwtmp.c
- tnftpd_CPPFLAGS = \
+ AM_CPPFLAGS = \
-DHAVE_TNFTPD_H=1 \
@@ -45,8 +47,6 @@
extern.h \
Modified: head/ftp/tnftpd/files/patch-src-ftpd.c
==============================================================================
--- head/ftp/tnftpd/files/patch-src-ftpd.c Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/files/patch-src-ftpd.c Thu Mar 28 09:33:42 2013 (r315454)
@@ -1,4 +1,3 @@
-
Rewrite utmpx support.
--- src/ftpd.c.orig 2009-11-07 04:26:48.000000000 +0100
@@ -13,7 +12,7 @@ Rewrite utmpx support.
#ifdef SUPPORT_UTMP
ftpd_initwtmp();
#endif
-@@ -1319,23 +1316,18 @@
+@@ -1320,23 +1317,18 @@
(void)gettimeofday(&tv, NULL);
#endif
#ifdef SUPPORT_UTMPX
@@ -42,7 +41,7 @@ Rewrite utmpx support.
#endif
#ifdef SUPPORT_UTMP
if (doutmp) {
-@@ -1355,17 +1347,23 @@
+@@ -1356,17 +1348,23 @@
logout_utmp(void)
{
#ifdef SUPPORT_UTMPX
Modified: head/ftp/tnftpd/files/patch-src-logutmp.c
==============================================================================
--- head/ftp/tnftpd/files/patch-src-logutmp.c Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/files/patch-src-logutmp.c Thu Mar 28 09:33:42 2013 (r315454)
@@ -1,4 +1,3 @@
-
FreeBSD does not have header file util.h, fortunately it is not needed.
Add header file time.h for time(). Rewrite utmpx support.
Modified: head/ftp/tnftpd/files/patch-src-logwtmp.c
==============================================================================
--- head/ftp/tnftpd/files/patch-src-logwtmp.c Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/files/patch-src-logwtmp.c Thu Mar 28 09:33:42 2013 (r315454)
@@ -1,4 +1,3 @@
-
FreeBSD does not have header file util.h, fortunately it is not needed. Add
header files sys/socket.h and netdb.h for getaddrinfo() and getnameinfo().
If host name is longer than UT_HOSTSIZE (16 characters), log numeric
Modified: head/ftp/tnftpd/files/patch-tnftpd.h
==============================================================================
--- head/ftp/tnftpd/files/patch-tnftpd.h Thu Mar 28 09:32:14 2013 (r315453)
+++ head/ftp/tnftpd/files/patch-tnftpd.h Thu Mar 28 09:33:42 2013 (r315454)
@@ -1,4 +1,3 @@
-
FreeBSD does not have LOGIN_NAME_MAX, but it has MAXLOGNAME instead,
so use it as much as possible. Rewrite utmpx support.
More information about the svn-ports-head
mailing list