diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2006-07-10 05:12:25 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2006-07-10 05:12:25 +0000 |
commit | 152deb7b3c12d70a7c0f68c61ab4f3a2c0bf9431 (patch) | |
tree | 0f8796512efc62710a55a7fde8bd1a15d6504fdd /ports-mgmt | |
parent | a9c8f80cb79cc0a30a470268e6570ab0bdc8a65b (diff) | |
download | ports-152deb7b3c12d70a7c0f68c61ab4f3a2c0bf9431.tar.gz ports-152deb7b3c12d70a7c0f68c61ab4f3a2c0bf9431.zip |
Notes
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portmk/Mk/bsd.port.mk | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ports-mgmt/portmk/Mk/bsd.port.mk b/ports-mgmt/portmk/Mk/bsd.port.mk index 8453a86ff9a1..a0e8a705a04b 100644 --- a/ports-mgmt/portmk/Mk/bsd.port.mk +++ b/ports-mgmt/portmk/Mk/bsd.port.mk @@ -382,9 +382,9 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # USE_OPENSSL - If set, this port relies on the OpenSSL package. ## # USE_OPENLDAP - If set, this port uses the OpenLDAP libraries. -# Implies: WANT_OPENLDAP_VER?=22 +# Implies: WANT_OPENLDAP_VER?=23 # WANT_OPENLDAP_VER -# - Legal values are: 21, 22, 23 +# - Legal values are: 22, 23, 24 # If set to an unkown value, the port is marked BROKEN. # WANT_OPENLDAP_SASL # - If set, the system should use OpenLDAP libraries @@ -1459,6 +1459,14 @@ PERL= ${LOCALBASE}/bin/perl .endif .endif +.if defined(WANT_WX) || defined(USE_WX) || defined(USE_WX_NOT) +.if exists(${DEVELPORTSDIR}/Mk/bsd.wx.mk) +.include "${DEVELPORTSDIR}/Mk/bsd.wx.mk" +.else +.include "${PORTSDIR}/Mk/bsd.wx.mk" +.endif +.endif + .if defined(WANT_GSTREAMER) || defined(USE_GSTREAMER) || defined(USE_GSTREAMER80) .if exists(${DEVELPORTSDIR}/Mk/bsd.gstreamer.mk) .include "${DEVELPORTSDIR}/Mk/bsd.gstreamer.mk" @@ -1483,14 +1491,6 @@ PERL= ${LOCALBASE}/bin/perl .endif .endif -.if defined(WANT_WX) || defined(USE_WX) || defined(USE_WX_NOT) -.if exists(${DEVELPORTSDIR}/Mk/bsd.wx.mk) -.include "${DEVELPORTSDIR}/Mk/bsd.wx.mk" -.else -.include "${PORTSDIR}/Mk/bsd.wx.mk" -.endif -.endif - .if ${OSVERSION} >= 502123 X_WINDOW_SYSTEM ?= xorg .elif (${OSVERSION} >= 450005 && !defined(XFREE86_VERSION)) || \ |