diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-06-06 01:12:56 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2013-06-06 01:12:56 +0000 |
commit | 0542bfb06f79ba1dbd8dd9cdde0bafaf725e47ec (patch) | |
tree | 39553f947ea15e87424f98d2fdb9bd5e57b524ef /mail/dspam/Makefile | |
parent | 772cd54f0f1d8523f46e83c09233e24abf002e0b (diff) | |
download | ports-0542bfb06f79ba1dbd8dd9cdde0bafaf725e47ec.tar.gz ports-0542bfb06f79ba1dbd8dd9cdde0bafaf725e47ec.zip |
Fix options conversion with bmake
Notes
Notes:
svn path=/head/; revision=320041
Diffstat (limited to 'mail/dspam/Makefile')
-rw-r--r-- | mail/dspam/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/dspam/Makefile b/mail/dspam/Makefile index 9f293a455609..1b551a42af17 100644 --- a/mail/dspam/Makefile +++ b/mail/dspam/Makefile @@ -248,7 +248,7 @@ WANT_MYSQL_VER= 55 #PKGNAMESUFFIX= -mysql55 .endif -.if ${PORT_OPTIONS:MMYSQL51) || ${PORT_OPTIONS:MMYSQL55} +.if ${PORT_OPTIONS:MMYSQL51} || ${PORT_OPTIONS:MMYSQL55} USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql-includes=${LOCALBASE}/include/mysql \ --with-mysql-libraries=${LOCALBASE}/lib/mysql @@ -494,7 +494,7 @@ pre-configure: @${ECHO_CMD} "DOMAIN_SCALE and LARGE_SCALE are incopatible" @${FALSE} .endif -.if ${PORT_OPTIONS:MLIGHTHTTPD) && ! ${PORT_OPTIONS:MWEBUI} +.if ${PORT_OPTIONS:MLIGHTHTTPD} && ! ${PORT_OPTIONS:MWEBUI) @${ECHO_CMD} "There's no reason to depend on LightHTTPD if you're not using WebUI" @${FALSE} .endif |