diff options
author | acm <acm@FreeBSD.org> | 2017-04-22 10:56:14 +0800 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2017-04-22 10:56:14 +0800 |
commit | 789c3ed43071c6422bb1cf46b0e738b398acb2ad (patch) | |
tree | e6478d3e9f95e960481c6abfb0c351b9c86fb212 /emulators/gngeo | |
parent | 687493b2316b7f5cdeeed7e4b73a2b2c72c3140f (diff) | |
download | freebsd-ports-gnome-789c3ed43071c6422bb1cf46b0e738b398acb2ad.tar.gz freebsd-ports-gnome-789c3ed43071c6422bb1cf46b0e738b398acb2ad.tar.zst freebsd-ports-gnome-789c3ed43071c6422bb1cf46b0e738b398acb2ad.zip |
- Fix build on i386
- Bump PORTREVISION
Diffstat (limited to 'emulators/gngeo')
-rw-r--r-- | emulators/gngeo/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/emulators/gngeo/Makefile b/emulators/gngeo/Makefile index 910b32b6f90f..c71ceafe668a 100644 --- a/emulators/gngeo/Makefile +++ b/emulators/gngeo/Makefile @@ -3,7 +3,7 @@ PORTNAME= gngeo PORTVERSION= 0.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= https://github.com/pepone42/gngeo/archive/ \ LOCAL/acm/${PORTNAME} @@ -64,14 +64,12 @@ CONFIGURE_ARGS+= --with-m68kcore=gen68k post-patch: @${REINPLACE_CMD} -e 's|x86_64|amd64|' ${WRKSRC}/configure -.if ${ARCH} == "amd64" - @${REINPLACE_CMD} -e 's|-malign-double||' ${WRKSRC}/configure -.endif .if ${COMPILER_TYPE} == "clang" @${REINPLACE_CMD} -e 's|-frerun-loop-opt||; \ s|-falign-jumps=2||; s|-falign-loops=2||; \ - s|-fschedule-insns2||; s|-malign-double||' \ - ${WRKSRC}/configure + s|-fschedule-insns2||; s|-malign-double||; \ + s|-frerun-loop-opt||; s|-malign-double||; \ + s|-O3||' ${WRKSRC}/configure .endif @${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}|' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} \ |