summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorfhajny <fhajny@pkgsrc.org>2013-09-12 14:21:27 +0000
committerfhajny <fhajny@pkgsrc.org>2013-09-12 14:21:27 +0000
commitaeccd4b87b4db01a54b70d41b7668357830ea689 (patch)
treedb6553fc4b44a8502a1d5bb74bed33f1e56b6967 /devel
parent604ec864833248407c0c7af9e4c38fb7560a8e2d (diff)
downloadpkgsrc-aeccd4b87b4db01a54b70d41b7668357830ea689.tar.gz
Add missing options.mk
Diffstat (limited to 'devel')
-rw-r--r--devel/libmemcached/options.mk28
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/libmemcached/options.mk b/devel/libmemcached/options.mk
new file mode 100644
index 00000000000..9ed7d12b5fb
--- /dev/null
+++ b/devel/libmemcached/options.mk
@@ -0,0 +1,28 @@
+# $NetBSD: options.mk,v 1.1 2013/09/12 14:21:27 fhajny Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.libmemcached
+PKG_SUPPORTED_OPTIONS= sasl
+PKG_SUGGESTED_OPTIONS= sasl
+
+#.if ${OPSYS} == "SunOS"
+#PKG_SUGGESTED_OPTIONS+= dtrace
+#.endif
+
+.include "../../mk/bsd.options.mk"
+
+###
+### Cyrus SASL support
+###
+.if !empty(PKG_OPTIONS:Msasl)
+CONFIGURE_ARGS+= --enable-sasl
+. include "../../security/cyrus-sasl/buildlink3.mk"
+.else
+CONFIGURE_ARGS+= --disable-sasl
+.endif
+
+###
+### DTrace support
+###
+#.if !empty(PKG_OPTIONS:Mdtrace)
+#CONFIGURE_ARGS+= --enable-dtrace
+#.endif