diff options
author | edwin <edwin@FreeBSD.org> | 2005-10-11 08:44:23 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-10-11 08:44:23 +0800 |
commit | 17f0800e0bb1b6157af98146debfe9244b560698 (patch) | |
tree | 31a4c97e2cb794225a4a6e6d19756c76a449813e /astro | |
parent | 409fd1091c3a0b0f5816be2980d17c3c13536f88 (diff) | |
download | freebsd-ports-gnome-17f0800e0bb1b6157af98146debfe9244b560698.tar.gz freebsd-ports-gnome-17f0800e0bb1b6157af98146debfe9244b560698.tar.zst freebsd-ports-gnome-17f0800e0bb1b6157af98146debfe9244b560698.zip |
nan() is a gcc 3.3-ism, therefor require GCC 3.3 for this port.
Diffstat (limited to 'astro')
-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 |