aboutsummaryrefslogtreecommitdiff
path: root/irc/ircd-hybrid
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-01-05 23:57:18 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-01-05 23:57:18 +0000
commit8931540e0ace91aa22d2f957ccaefa11eb78adca (patch)
treeba8db1a7ef46faa33c54d8a65ffec766dbd8ae2c /irc/ircd-hybrid
parent5eade7a03d253aa1b80ba86a013d966526b7ddfa (diff)
downloadports-8931540e0ace91aa22d2f957ccaefa11eb78adca.tar.gz
ports-8931540e0ace91aa22d2f957ccaefa11eb78adca.zip
- Fix SSL option
- Add HALFOPS option - Fix comment about PREFIX PR: ports/91340 Submitted by: Geraint Edwards <gedge-oss@yadn.org> Approved by: maintainer
Notes
Notes: svn path=/head/; revision=152846
Diffstat (limited to 'irc/ircd-hybrid')
-rw-r--r--irc/ircd-hybrid/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/irc/ircd-hybrid/Makefile b/irc/ircd-hybrid/Makefile
index 73cab820d05b..a054d429e763 100644
--- a/irc/ircd-hybrid/Makefile
+++ b/irc/ircd-hybrid/Makefile
@@ -28,7 +28,7 @@ PLIST_SUB+= PORTVERSION=${PORTVERSION}
#
# User Configurable Variables
#
-# PREFIX - Where to install ircd-hybrid. Default is /usr/local/ircd
+# PREFIX - Where to install ircd-hybrid. Default is /usr/local
# WITH_OPENSSL - Enable openssl. Allows use of CHALLENGE and encrypted links.
# WITHOUT_SHARED_MODULES - Disable shared modules. More secure but reduces flexability.
# WITHOUT_ASSERT - Disable parts of the debugging code.
@@ -42,7 +42,11 @@ CONFIGURE_ARGS+= --prefix=${PREFIX}
.if defined(WITH_OPENSSL)
USE_OPENSSL= yes
-CONFIGURE_ARGS+= --enable-openssl=${OPENSSLINC}/openssl
+CONFIGURE_ARGS+= --enable-openssl=${OPENSSLINC}
+.endif
+
+.if defined(WITH_HALFOPS)
+CONFIGURE_ARGS+= --enable-halfops
.endif
.if defined(WITHOUT_SHARED_MODULES)