From owner-freebsd-ports Thu Sep 19 17: 0:10 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44A8A37B401 for ; Thu, 19 Sep 2002 17:00:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 008AC43E65 for ; Thu, 19 Sep 2002 17:00:09 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g8K008Co014300 for ; Thu, 19 Sep 2002 17:00:08 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g8K008Om014299; Thu, 19 Sep 2002 17:00:08 -0700 (PDT) Date: Thu, 19 Sep 2002 17:00:08 -0700 (PDT) Message-Id: <200209200000.g8K008Om014299@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Bob Fleck Subject: Re: ports/42972: --with-ssl is not supported by /usr/ports/irc/bitchx makefile Reply-To: Bob Fleck Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/42972; it has been noted by GNATS. From: Bob Fleck 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