aboutsummaryrefslogtreecommitdiff
path: root/net/fspclient
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2011-12-06 21:19:47 +0000
committerCy Schubert <cy@FreeBSD.org>2011-12-06 21:19:47 +0000
commit4d4091e326eb5cafa81afbad4ab5304ce4c3a0ea (patch)
tree7504eb21ed116068cae54842ee530322c1b96504 /net/fspclient
parentc708a68edf6a06090ecb445a39ce16d00c443d3e (diff)
downloadports-4d4091e326eb5cafa81afbad4ab5304ce4c3a0ea.tar.gz
ports-4d4091e326eb5cafa81afbad4ab5304ce4c3a0ea.zip
Fix build under 9.0.
Assume maintainership of this orphan. Feature safe: yes
Notes
Notes: svn path=/head/; revision=286991
Diffstat (limited to 'net/fspclient')
-rw-r--r--net/fspclient/Makefile6
-rw-r--r--net/fspclient/files/patch-bsd-print.c15
2 files changed, 16 insertions, 5 deletions
diff --git a/net/fspclient/Makefile b/net/fspclient/Makefile
index e49cacc184bc..96fbd66ca039 100644
--- a/net/fspclient/Makefile
+++ b/net/fspclient/Makefile
@@ -10,7 +10,7 @@ PORTVERSION= 0.93.0
CATEGORIES= net
MASTER_SITES= SF
-MAINTAINER= ports@FreeBSD.org
+MAINTAINER= cy@FreeBSD.org
COMMENT= A ftp-like client for the FSP service
USE_BZIP2= yes
@@ -23,8 +23,4 @@ PLIST_FILES= bin/fsp
.include <bsd.port.pre.mk>
-.if ${OSVERSION} > 900007
-BROKEN= fails to build with new utmpx
-.endif
-
.include <bsd.port.post.mk>
diff --git a/net/fspclient/files/patch-bsd-print.c b/net/fspclient/files/patch-bsd-print.c
new file mode 100644
index 000000000000..31b402b24d3d
--- /dev/null
+++ b/net/fspclient/files/patch-bsd-print.c
@@ -0,0 +1,15 @@
+--- bsd/print.c.orig 2009-09-15 13:34:20.000000000 -0700
++++ bsd/print.c 2011-12-06 13:16:42.300321971 -0800
+@@ -27,7 +27,12 @@
+ #include "client.h"
+ #include <grp.h>
+ #include <pwd.h>
++#include <sys/param.h>
++#if defined(__FreeBSD_version) && __FreeBSD_version > 900007
++#include <utmpx.h>
++#else
+ #include <utmp.h>
++#endif
+ #include <time.h>
+ #include "ls.h"
+