diff options
author | ache <ache@FreeBSD.org> | 2007-06-25 20:45:45 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2007-06-25 20:45:45 +0800 |
commit | 4a8a81464b68ca2d148eb9a5b62fa34558f29465 (patch) | |
tree | 11db34aa6fd5b06a04859e89a60228317cc89a5a /misc | |
parent | e37a3255cf91c4a0650cdbcb27099d1af5d1951b (diff) | |
download | freebsd-ports-graphics-4a8a81464b68ca2d148eb9a5b62fa34558f29465.tar.gz freebsd-ports-graphics-4a8a81464b68ca2d148eb9a5b62fa34558f29465.tar.zst freebsd-ports-graphics-4a8a81464b68ca2d148eb9a5b62fa34558f29465.zip |
Force -O due to silent gcc 4.2.0 loop optimization bug with -O2
Diffstat (limited to 'misc')
-rw-r--r-- | misc/astrolog/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/astrolog/Makefile b/misc/astrolog/Makefile index f23f1839e97..22bcd6bcf50 100644 --- a/misc/astrolog/Makefile +++ b/misc/astrolog/Makefile @@ -10,7 +10,7 @@ PORTNAME= astrolog PORTVERSION= 5.40 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= misc MASTER_SITES= http://www.astrolog.org/ftp/ephem/:ephem \ http://www.astrolog.org/ftp/:dist @@ -21,6 +21,8 @@ DISTFILES= ${EXTRACT_ONLY}:dist ${EPHEM}:ephem MAINTAINER= ache@FreeBSD.org COMMENT= An astrology program for X11 and alpha-numeric terminals +CFLAGS+=-O # Silent gcc 4.2.0 loop optimization bug with -O2 + # at the end of intrpret.c:ChartInfluence() USE_ZIP= yes .if !defined(WITHOUT_X11) USE_XLIB= yes |