aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlioux <lioux@FreeBSD.org>2005-12-16 14:11:44 +0800
committerlioux <lioux@FreeBSD.org>2005-12-16 14:11:44 +0800
commit979792d2f62beae604a1017fb1f0b7f16c014219 (patch)
tree3760fc99e3a25c5a9146ece9be0cf1767446206c
parentf38f96c309bcdc9a84f50e8f5eab960f845beb9e (diff)
downloadfreebsd-ports-gnome-979792d2f62beae604a1017fb1f0b7f16c014219.tar.gz
freebsd-ports-gnome-979792d2f62beae604a1017fb1f0b7f16c014219.tar.zst
freebsd-ports-gnome-979792d2f62beae604a1017fb1f0b7f16c014219.zip
Fix build on OSVERSION < 500000: <sys/limits.h> -> <limits.h>
Submitted by: maintainer
-rw-r--r--misc/buffer/files/patch-buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/buffer/files/patch-buffer.c b/misc/buffer/files/patch-buffer.c
index fb108cda2767..bbc8ff0ace18 100644
--- a/misc/buffer/files/patch-buffer.c
+++ b/misc/buffer/files/patch-buffer.c
@@ -8,11 +8,11 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ipc.h>
-+#include <sys/limits.h>
#include <sys/shm.h>
#include <sys/sem.h>
#include <sys/wait.h>
+#include <sys/time.h>
++#include <limits.h>
+#include <stdlib.h>
+#include <strings.h>
#include "sem.h"