diff options
author | lioux <lioux@FreeBSD.org> | 2005-12-16 14:11:44 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2005-12-16 14:11:44 +0800 |
commit | 979792d2f62beae604a1017fb1f0b7f16c014219 (patch) | |
tree | 3760fc99e3a25c5a9146ece9be0cf1767446206c | |
parent | f38f96c309bcdc9a84f50e8f5eab960f845beb9e (diff) | |
download | freebsd-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.c | 2 |
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" |