diff options
author | arved <arved@FreeBSD.org> | 2003-10-03 02:06:05 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2003-10-03 02:06:05 +0800 |
commit | 7ae42f2a92335f93f0387bb2b49dc47fba867dfd (patch) | |
tree | 985e0a0c98ecf4c124e098ae3e59c68e62a17add /irc/bitchx/Makefile | |
parent | 187e4364e05d16e27d3c64785f6412362e935d92 (diff) | |
download | freebsd-ports-gnome-7ae42f2a92335f93f0387bb2b49dc47fba867dfd.tar.gz freebsd-ports-gnome-7ae42f2a92335f93f0387bb2b49dc47fba867dfd.tar.zst freebsd-ports-gnome-7ae42f2a92335f93f0387bb2b49dc47fba867dfd.zip |
Move USE_OPENSSL variable before bsd.port.pre.mk
PR: 57502
Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Diffstat (limited to 'irc/bitchx/Makefile')
-rw-r--r-- | irc/bitchx/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/irc/bitchx/Makefile b/irc/bitchx/Makefile index 7701082cf24b..ba78a0ba883d 100644 --- a/irc/bitchx/Makefile +++ b/irc/bitchx/Makefile @@ -62,6 +62,10 @@ USE_GNOME+= esound CONFIGURE_ARGS+=--enable-sound .endif +.if defined(WITH_SSL) +USE_OPENSSL= yes +.endif + .include <bsd.port.pre.mk> .if ${ARCH} == "alpha" || ${ARCH} == "ia64" @@ -69,7 +73,6 @@ BROKEN="Dumps core on startup" .endif .if defined(WITH_IPV6) -USE_IPV6= yes CONFIGURE_ARGS+=--enable-ipv6 .endif @@ -89,7 +92,6 @@ CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" .endif .if defined(WITH_SSL) -USE_OPENSSL= yes CONFIGURE_ARGS+= --with-ssl .endif |