diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-08-24 18:56:09 +0800 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-08-24 18:56:09 +0800 |
commit | ab9ec4c6ffd6f5b6acfe4b791cda50233ee3a91b (patch) | |
tree | 3d15ad50cf28eca8964ef3069f4859830253442d /games/freesci | |
parent | c4f41656d9b2b7c7940ef85d6d54111fe7d0dc73 (diff) | |
download | freebsd-ports-gnome-ab9ec4c6ffd6f5b6acfe4b791cda50233ee3a91b.tar.gz freebsd-ports-gnome-ab9ec4c6ffd6f5b6acfe4b791cda50233ee3a91b.tar.zst freebsd-ports-gnome-ab9ec4c6ffd6f5b6acfe4b791cda50233ee3a91b.zip |
- Respect CFLAGS [1]
- Add INSTALLS_ICONS
Submitted by: Soeren Straarup via irc [1]
Approved by: krion (mentor)
Diffstat (limited to 'games/freesci')
-rw-r--r-- | games/freesci/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/freesci/Makefile b/games/freesci/Makefile index 5043dae91bb1..48c7a94aa12c 100644 --- a/games/freesci/Makefile +++ b/games/freesci/Makefile @@ -19,6 +19,7 @@ USE_BZIP2= yes USE_XLIB= yes GNU_CONFIGURE= yes WANT_SDL= yes +INSTALLS_ICONS= yes CONFIGURE_TARGET= CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" @@ -34,7 +35,7 @@ OPTIONS= CONSOLE "With console support" off \ .include <bsd.port.pre.mk> .if defined(WITH_OPTIMIZED_CFLAGS) -CFLAGS= -O3 -fexpensive-optimizations -fomit-frame-pointer -funroll-loops \ +CFLAGS+= -O3 -fexpensive-optimizations -fomit-frame-pointer -funroll-loops \ -fstrict-aliasing .if ${ARCH} != "alpha" CFLAGS+= -ffast-math |