summaryrefslogtreecommitdiff
path: root/chat/dircproxy/options.mk
diff options
context:
space:
mode:
Diffstat (limited to 'chat/dircproxy/options.mk')
-rw-r--r--chat/dircproxy/options.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/chat/dircproxy/options.mk b/chat/dircproxy/options.mk
new file mode 100644
index 00000000000..9ddd73155f2
--- /dev/null
+++ b/chat/dircproxy/options.mk
@@ -0,0 +1,22 @@
+# $NetBSD: options.mk,v 1.1 2008/06/17 12:53:54 tron Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.dircproxy
+PKG_SUPPORTED_OPTIONS= ssl debug
+PKG_SUGGESTED_OPTIONS= ssl
+
+.include "../../mk/bsd.options.mk"
+
+###
+### Compile with SSL support
+###
+.if !empty(PKG_OPTIONS:Mssl)
+CONFIGURE_ARGS+= --enable-ssl
+.include "../../security/openssl/buildlink3.mk"
+.endif
+
+###
+### Turn on debugging
+###
+.if !empty(PKG_OPTIONS:Mdebug)
+CONFIGURE_ARGS+= --enable-debug
+.endif