Date: Thu, 19 Sep 2002 17:00:08 -0700 (PDT) From: Bob Fleck <bob@securesoftware.com> To: freebsd-ports@FreeBSD.org Subject: Re: ports/42972: --with-ssl is not supported by /usr/ports/irc/bitchx makefile Message-ID: <200209200000.g8K008Om014299@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/42972; it has been noted by GNATS. From: Bob Fleck <bob@securesoftware.com> To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/42972: --with-ssl is not supported by /usr/ports/irc/bitchx makefile Date: 19 Sep 2002 19:54:17 -0400 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" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200209200000.g8K008Om014299>