diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2007-10-04 07:22:04 +0800 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2007-10-04 07:22:04 +0800 |
commit | c0b3ecac4483b2524287317171c79548d9842905 (patch) | |
tree | a54ccbce3d9ebec379dfb9b18dc59f736f99ac20 /lang/icc | |
parent | a582224f292229127fbfc1892699cee68aed933f (diff) | |
download | freebsd-ports-gnome-c0b3ecac4483b2524287317171c79548d9842905.tar.gz freebsd-ports-gnome-c0b3ecac4483b2524287317171c79548d9842905.tar.zst freebsd-ports-gnome-c0b3ecac4483b2524287317171c79548d9842905.zip |
Remove support for OSVERSION < 5
Diffstat (limited to 'lang/icc')
-rw-r--r-- | lang/icc/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lang/icc/Makefile b/lang/icc/Makefile index df123e737017..9e5c0dc8c93c 100644 --- a/lang/icc/Makefile +++ b/lang/icc/Makefile @@ -181,8 +181,7 @@ post-patch: >${WRKSRC}/opt/${COMPILERDIR}/include/stdbool.h .endif -.if ( ${OSVERSION} >= 470101 && ${OSVERSION} < 500000 ) || \ - ( ${OSVERSION} >= 500042 ) +.if ( ${OSVERSION} >= 500042 ) OBJCOPY_OPS= --redefine-sym stdin=__stdinp \ --redefine-sym stdout=__stdoutp \ --redefine-sym stderr=__stderrp @@ -200,8 +199,7 @@ do-build: .if ( ${OSVERSION} < 502101 ) @cd ${WRKSRC} && ${CC} ${CFLAGS} -c ${FILESDIR}/cxa_atexit.c .endif -.if ( ${OSVERSION} < 470101 ) || \ - ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500042 ) +.if ( ${OSVERSION} < 500042 ) @${CC} ${CFLAGS} -c -o ${WRKSRC}/stdin.o ${FILESDIR}/stdin.c @${CC} ${CFLAGS} -c -o ${WRKSRC}/stdout.o ${FILESDIR}/stdout.c @${CC} ${CFLAGS} -c -o ${WRKSRC}/stderr.o ${FILESDIR}/stderr.c |