1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00
freebsd-ports/net/fspclient/files/patch-bsd-print.c
Cy Schubert 4d4091e326 Fix build under 9.0.
Assume maintainership of this orphan.

Feature safe:	yes
2011-12-06 21:19:47 +00:00

16 lines
363 B
C

--- 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"