diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-29 07:01:20 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-29 07:01:20 +0000 |
commit | 6def68975b2f7aee54abf77530b1d554a91400b0 (patch) | |
tree | a609832517ae02d26726d505e999fd9babfe2033 /Mk/bsd.options.mk | |
parent | 31ec5af7f64dfa029d79938ff825d332bd554426 (diff) | |
download | ports-6def68975b2f7aee54abf77530b1d554a91400b0.tar.gz ports-6def68975b2f7aee54abf77530b1d554a91400b0.zip |
Notes
Diffstat (limited to 'Mk/bsd.options.mk')
-rw-r--r-- | Mk/bsd.options.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index 0fb3e40d9128..43fc86558fb7 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -351,6 +351,9 @@ PLIST_SUB:= ${PLIST_SUB} ${opt}="@comment " . if defined(${opt}_CONFIGURE_ENABLE) CONFIGURE_ARGS+= --enable-${${opt}_CONFIGURE_ENABLE} . endif +. if defined(${opt}_CONFIGURE_WITH) +CONFIGURE_ARGS+= --with-${${opt}_CONFIGURE_WITH} +. endif . if defined(${opt}_CONFIGURE_ON) CONFIGURE_ARGS+= ${${opt}_CONFIGURE_ON} . endif @@ -371,6 +374,9 @@ ${deptype}_DEPENDS+= ${${opt}_${deptype}_DEPENDS} . if defined(${opt}_CONFIGURE_ENABLE) CONFIGURE_ARGS+= --disable-${${opt}_CONFIGURE_ENABLE} . endif +. if defined(${opt}_CONFIGURE_WITH) +CONFIGURE_ARGS+= --without-${${opt}_CONFIGURE_WITH} +. endif . if defined(${opt}_CONFIGURE_OFF) CONFIGURE_ARGS+= ${${opt}_CONFIGURE_OFF} . endif |