diff options
author | pav <pav@FreeBSD.org> | 2006-01-06 07:57:18 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-01-06 07:57:18 +0800 |
commit | 65a0f264588bfc3e5c26e6b14ba972c45fca49a3 (patch) | |
tree | 070d2b524758574c834c65f7d42a40ffbdd39163 /irc/ircd-hybrid/Makefile | |
parent | d3c31e94068a23574e034a485cd930823289708a (diff) | |
download | freebsd-ports-gnome-65a0f264588bfc3e5c26e6b14ba972c45fca49a3.tar.gz freebsd-ports-gnome-65a0f264588bfc3e5c26e6b14ba972c45fca49a3.tar.zst freebsd-ports-gnome-65a0f264588bfc3e5c26e6b14ba972c45fca49a3.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
Diffstat (limited to 'irc/ircd-hybrid/Makefile')
-rw-r--r-- | irc/ircd-hybrid/Makefile | 8 |
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) |