diff options
author | Tom Judge <tj@FreeBSD.org> | 2012-06-01 18:20:26 +0000 |
---|---|---|
committer | Tom Judge <tj@FreeBSD.org> | 2012-06-01 18:20:26 +0000 |
commit | 1d14744cb6988531a48fb2b287c484d0972aba7b (patch) | |
tree | 490f4497cd69387468c22104e8e3f60b3ccaf530 /security/razorback-fileInject/Makefile | |
parent | 0acab13d73e190b2860ab89369139764c7d2a937 (diff) | |
download | ports-1d14744cb6988531a48fb2b287c484d0972aba7b.tar.gz ports-1d14744cb6988531a48fb2b287c484d0972aba7b.zip |
Notes
Diffstat (limited to 'security/razorback-fileInject/Makefile')
-rw-r--r-- | security/razorback-fileInject/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/security/razorback-fileInject/Makefile b/security/razorback-fileInject/Makefile index 621ee6e9c826..549182bcf0a1 100644 --- a/security/razorback-fileInject/Makefile +++ b/security/razorback-fileInject/Makefile @@ -20,19 +20,20 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= razorback_api.2:${PORTSDIR}/security/razorback-api -OPTIONS= DEBUG "Enable Debug" off \ - ASSERT "Enable Asserts" off +OPTIONS_DEFINE= DEBUG ASSERT + +.include <bsd.port.options.mk> GNU_CONFIGURE= yes USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -.if defined(WITH_DEBUG) +.if !empty(PORT_OPTIONS:MDEBUG) CONFIGURE_ARGS+=--enable-debug .endif -.if defined(WITH_ASSERT) +.if !empty(PORT_OPTIONS:MASSERT) CONFIGURE_ARGS+=--enable-assert .endif |