View | Details | Raw Unified | Return to bug 111727
Collapse All | Expand All

(-)Makefile (-7 / +1 lines)
Lines 23-32 Link Here
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
24
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
25
25
26
.include <bsd.port.pre.mk>
26
.include <bsd.port.mk>
27
28
.if ${OSVERSION} < 500036
29
EXTRA_PATCHES+=	${PATCHDIR}/extra-*
30
.endif
31
32
.include <bsd.port.post.mk>
(-)files/extra-patch-src-genome.c (-17 lines)
Removed Link Here
1
--- src/genome.c.orig	Sun Mar  5 11:14:48 2006
2
+++ src/genome.c	Fri Sep 29 09:23:15 2006
3
@@ -15,13 +15,13 @@
4
 #include <stddef.h>
5
 #include <stdlib.h>
6
 #include <string.h>
7
-#include <sys/mman.h>		/* For munmap */
8
 #ifdef HAVE_UNISTD_H
9
 #include <unistd.h>		/* For lseek and close */
10
 #endif
11
 #ifdef HAVE_SYS_TYPES_H
12
 #include <sys/types.h>		/* For off_t */
13
 #endif
14
+#include <sys/mman.h>		/* For munmap */
15
 
16
 #ifdef HAVE_PTHREAD
17
 #include <pthread.h>		/* sys/types.h already included above */
(-)files/extra-patch-src-indexdb.c (-17 lines)
Removed Link Here
1
--- src/indexdb.c.orig	Sat Mar  4 10:19:53 2006
2
+++ src/indexdb.c	Fri Sep 29 11:12:55 2006
3
@@ -22,13 +22,13 @@
4
 #include <stdlib.h>
5
 #include <string.h>		/* For memset */
6
 #include <ctype.h>		/* For toupper */
7
-#include <sys/mman.h>		/* For munmap */
8
 #ifdef HAVE_UNISTD_H
9
 #include <unistd.h>		/* For lseek and close */
10
 #endif
11
 #ifdef HAVE_SYS_TYPES_H
12
 #include <sys/types.h>		/* For off_t */
13
 #endif
14
+#include <sys/mman.h>		/* For munmap */
15
 
16
 #include "mem.h"
17
 #include "fopen.h"

Return to bug 111727