diff options
author | edwin <edwin@FreeBSD.org> | 2007-10-04 10:10:52 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2007-10-04 10:10:52 +0800 |
commit | 390824965052cc70180f9260020ce05f7bac73b3 (patch) | |
tree | de8ee9a13aa428604f4e7ec2f6467eab313deb48 /net/gatekeeper | |
parent | 30692bcf95616dd19481e08304ab4b7d2b142b8c (diff) | |
download | freebsd-ports-gnome-390824965052cc70180f9260020ce05f7bac73b3.tar.gz freebsd-ports-gnome-390824965052cc70180f9260020ce05f7bac73b3.tar.zst freebsd-ports-gnome-390824965052cc70180f9260020ce05f7bac73b3.zip |
Remove always-false/true conditions based on OSVERSION 500000
Diffstat (limited to 'net/gatekeeper')
-rw-r--r-- | net/gatekeeper/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/net/gatekeeper/Makefile b/net/gatekeeper/Makefile index 925b1d1058cd..04e3a68dfc50 100644 --- a/net/gatekeeper/Makefile +++ b/net/gatekeeper/Makefile @@ -41,9 +41,7 @@ EXAMPLESDIR= ${PREFIX}/share/examples/openh323 .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -BROKEN= does not build -.elif ${ARCH} == sparc64 && ${OSVERSION} <= 700003 +.if ${ARCH} == sparc64 && ${OSVERSION} <= 700003 BROKEN= does not link due to missing symbol in default thread library .endif @@ -51,12 +49,10 @@ BROKEN= does not link due to missing symbol in default thread library CONFIGURE_ARGS+= --with-large-fdset=${WITH_FDSET} .endif -.if ${OSVERSION} >= 500000 -. if defined(WITH_RADIUS) +.if defined(WITH_RADIUS) CONFIGURE_ARGS+= --enable-radius -. else +.else CONFIGURE_ARGS+= --disable-radius -. endif .endif .if defined(WITH_MYSQL) @@ -79,11 +75,9 @@ pre-everything:: @${ECHO_MSG} "Additional build options are:" @${ECHO_MSG} "" .endif -.if ${OSVERSION} >= 500000 -. ifndef(WITH_RADIUS) +.ifndef(WITH_RADIUS) @${ECHO_MSG} "WITH_RADIUS=yes - enable Radius support" @${ECHO_MSG} "" -. endif .endif .ifndef(WITH_MYSQL) @${ECHO_MSG} "WITH_MYSQL=yes - enable the MySQL backend" |