| Summary: | --with-ssl is not supported by /usr/ports/irc/bitchx makefile | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Bob Fleck <bob> |
| Component: | Individual Port(s) | Assignee: | Tilman Keskinoz <arved> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
Bob Fleck
2002-09-19 23:40:01 UTC
If anyone wants an easy patch to slip in before the ports freeze, I've
revisited my PR of this afternoon for BitchX. I have patched up the
Makefile so the port builds using ssl when you `make -DWITH_SSL`.
Bob Fleck
Patch follows:
--- Makefile.orig Thu Sep 19 19:32:44 2002
+++ Makefile Thu Sep 19 19:36:20 2002
@@ -76,6 +76,9 @@
CONFIGURE_ARGS+= --with-socks5=${LOCALBASE}
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include"
.endif
+.if defined(WITH_SSL)
+CONFIGURE_ARGS+=--with-ssl
+.endif
.if defined(WITH_PLUGINS)
PLUGINS=
abot,acro,aim,arcfour,autocycle,blowfish,cavlink,encrypt,fserv,hint,identd,nap,pkga,possum,qbx,qmail,scan,wavplay
PLIST_SUB+= PLUGINS:=""
@@ -119,6 +122,9 @@
.endif
.if !defined(WITH_SOCKS5)
@${ECHO_CMD} "WITH_SOCKS5 - Build BitchX with SOCKS5 support"
+.endif
+.if !defined(WITH_SSL)
+ @${ECHO_CMD} "WITH_SSL - Build BitchX with SSL support"
.endif
.if !defined(WITH_IPV6)
@${ECHO_CMD} "WITH_IPV6 - Build BitchX with IPV6 support"
Responsible Changed From-To: freebsd-ports->arved I am the Maintainer, so i should look at this. Bob, if you had CCed me, this PR may have been handled earlier. State Changed From-To: open->closed Committed, thanks. |