diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-10-11 08:44:23 +0800 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-10-11 08:44:23 +0800 |
commit | 96e604bf2d159c432b4ab5746c4eed6440c5525a (patch) | |
tree | 624c6b6116a0e231ebd88095618ec12729f8757d /astro/libnova/Makefile | |
parent | 51d0dd786d4c2bc2dcea70ae75c064d9cf90cdf8 (diff) | |
download | freebsd-ports-gnome-96e604bf2d159c432b4ab5746c4eed6440c5525a.tar.gz freebsd-ports-gnome-96e604bf2d159c432b4ab5746c4eed6440c5525a.tar.zst freebsd-ports-gnome-96e604bf2d159c432b4ab5746c4eed6440c5525a.zip |
nan() is a gcc 3.3-ism, therefor require GCC 3.3 for this port.
Diffstat (limited to 'astro/libnova/Makefile')
-rw-r--r-- | astro/libnova/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/astro/libnova/Makefile b/astro/libnova/Makefile index 4e1525a119e8..7cccafac2cd3 100644 --- a/astro/libnova/Makefile +++ b/astro/libnova/Makefile @@ -19,12 +19,13 @@ USE_GNOME= gnometarget lthack USE_REINPLACE= yes USE_LIBTOOL_VER= 15 INSTALLS_SHLIB= yes +USE_GCC= 3.3 .include <bsd.port.pre.mk> -#.if ${OSVERSION}<503000 -#IGNORE= Required FreeBSD 5.3 or higher -#.endif +.if ${OSVERSION}<503000 +IGNORE= Requires FreeBSD 5.3 or higher +.endif post-patch: @${REINPLACE_CMD} -e 's|^CFLAGS=|#CFLAGS=|g' ${WRKSRC}/configure |