diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-08 11:09:07 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-06-08 11:09:07 +0000 |
commit | af748fc7e00c06913e07abd2aa9ef24b50ca0ed3 (patch) | |
tree | a0a0547410e61a0c45048f3611ea82b6d72a78a6 /emulators/basiliskII | |
parent | 10f6ebe3280b4d13b371fc54fa503281a4b378c2 (diff) |
Notes
Diffstat (limited to 'emulators/basiliskII')
-rw-r--r-- | emulators/basiliskII/Makefile | 9 |
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> |