summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-06-08 11:09:07 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-06-08 11:09:07 +0000
commitaf748fc7e00c06913e07abd2aa9ef24b50ca0ed3 (patch)
treea0a0547410e61a0c45048f3611ea82b6d72a78a6 /emulators
parentUpdate to 0.9 alpha 1 (diff)
Unbroke port for gcc 2.95 and later.
Reported by: jmz
Notes
Notes: svn path=/head/; revision=29391
Diffstat (limited to 'emulators')
-rw-r--r--emulators/basiliskII/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/emulators/basiliskII/Makefile b/emulators/basiliskII/Makefile
index e64b7f99077e..cee28fbd5937 100644
--- a/emulators/basiliskII/Makefile
+++ b/emulators/basiliskII/Makefile
@@ -28,7 +28,6 @@ GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
ESD_CONFIG?= ${LOCALBASE}/bin/esd-config
CONFIGURE_ARGS= --disable-fbdev-dga
-
CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \
GLIB_CONFIG="${GLIB_CONFIG}" \
ESD_CONFIG="${ESD_CONFIG}" \
@@ -38,7 +37,13 @@ CFLAGS+= -D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads
MAN1= BasiliskII.1
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} > 400012
+CFLAGS+= -fpermissive
+.endif
+
post-install:
@${CAT} ${PKGMESSAGE}
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>