Date: Fri, 7 Jun 2013 11:57:45 +0000 (UTC) From: Olli Hauer <ohauer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320194 - in head/mail: dspam dspam-devel exim Message-ID: <201306071157.r57Bvja2084411@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ohauer Date: Fri Jun 7 11:57:44 2013 New Revision: 320194 URL: http://svnweb.freebsd.org/changeset/ports/320194 Log: - fix PORT_OPTIONS s/)/}/ Modified: head/mail/dspam-devel/Makefile head/mail/dspam/Makefile head/mail/exim/Makefile Modified: head/mail/dspam-devel/Makefile ============================================================================== --- head/mail/dspam-devel/Makefile Fri Jun 7 11:46:34 2013 (r320193) +++ head/mail/dspam-devel/Makefile Fri Jun 7 11:57:44 2013 (r320194) @@ -513,7 +513,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 Modified: head/mail/dspam/Makefile ============================================================================== --- head/mail/dspam/Makefile Fri Jun 7 11:46:34 2013 (r320193) +++ head/mail/dspam/Makefile Fri Jun 7 11:57:44 2013 (r320194) @@ -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 Modified: head/mail/exim/Makefile ============================================================================== --- head/mail/exim/Makefile Fri Jun 7 11:46:34 2013 (r320193) +++ head/mail/exim/Makefile Fri Jun 7 11:57:44 2013 (r320194) @@ -241,9 +241,9 @@ SEDLIST+= -e 's,XX_ICONV_LIBS_XX,-L${LOC SEDLIST+= -e 's,XX_ICONV_LIBS_XX,,' .endif -.if ${PORT_OPTIONS:MLDAP) || defined(LDAP_LIB_TYPE} \ - || ${PORT_OPTIONS:MOPENLDAP1) || defined(WITH_OPENLDAP2} \ - || ${PORT_OPTIONS:MOPENLDAP20) || defined(WITH_OPENLDAP21} +.if ${PORT_OPTIONS:MLDAP} || defined(LDAP_LIB_TYPE) \ + || ${PORT_OPTIONS:MOPENLDAP1} || defined(WITH_OPENLDAP2) \ + || ${PORT_OPTIONS:MOPENLDAP20} || defined(WITH_OPENLDAP21) BROKEN= deprecated LDAP option defined, use WITH_OPENLDAP or WITH_OPENLDAP_VER .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306071157.r57Bvja2084411>