Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Apr 2017 09:47:24 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r438139 - head/net/socat
Message-ID:  <201704100947.v3A9lOZc052538@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Mon Apr 10 09:47:24 2017
New Revision: 438139
URL: https://svnweb.freebsd.org/changeset/ports/438139

Log:
  socat will automatically link against readline if devel/readline is installed.
  Make readline optional and explicitly enable/disable during configure. This
  did not affect pkg only users as readline is not present on package build
  clusters but might affect (depending on readline presence) users that manually
  build ports. Therefore bump PORTREVISION.
  
  PR:		218370 (based on)
  Submitted by:	sunpoet

Modified:
  head/net/socat/Makefile

Modified: head/net/socat/Makefile
==============================================================================
--- head/net/socat/Makefile	Mon Apr 10 09:23:22 2017	(r438138)
+++ head/net/socat/Makefile	Mon Apr 10 09:47:24 2017	(r438139)
@@ -3,7 +3,7 @@
 
 PORTNAME=	socat
 PORTVERSION=	1.7.3.2
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	net ipv6
 MASTER_SITES=	http://www.dest-unreach.org/socat/download/ \
 		LOCAL/ehaupt
@@ -25,7 +25,11 @@ PORTSCOUT=	skipv:2.0.0-b2
 PLIST_FILES=	bin/filan bin/procan bin/socat man/man1/socat.1.gz
 PORTDOCS=	EXAMPLES README SECURITY FAQ
 
-OPTIONS_DEFINE=	DOCS
+OPTIONS_DEFINE=	DOCS READLINE
+
+READLINE_CONFIGURE_ENABLE=	readline
+READLINE_CONFIGURE_OFF=		--disable-readline
+READLINE_USES=			readline
 
 .include <bsd.port.pre.mk>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704100947.v3A9lOZc052538>