Date: Tue, 12 Jun 2018 11:28:42 +0000 (UTC) From: Ganael LAPLANCHE <martymac@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472241 - head/ftp/lftp Message-ID: <201806121128.w5CBSgbI034646@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: martymac Date: Tue Jun 12 11:28:42 2018 New Revision: 472241 URL: https://svnweb.freebsd.org/changeset/ports/472241 Log: Fix readline detection with a non-standard LOCALBASE Due to a bug in m4/lftp_lib_readline.m4, a wrong prefix is found for readline when using a non-standard LOCALBASE [1]. Add a temporary workaround waiting for the patch to be merged upstream [2]. https://reviews.freebsd.org/D15731 [1] https://github.com/lavv17/lftp/pull/458 [2] Differential Revision: https://reviews.freebsd.org/D15731 Modified: head/ftp/lftp/Makefile Modified: head/ftp/lftp/Makefile ============================================================================== --- head/ftp/lftp/Makefile Tue Jun 12 11:23:14 2018 (r472240) +++ head/ftp/lftp/Makefile Tue Jun 12 11:28:42 2018 (r472241) @@ -25,6 +25,10 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ USES= charsetfix iconv libtool localbase readline shebangfix GNU_CONFIGURE= yes +# XXX Fix readline detection with a non-standard LOCALBASE +# To remove when m4/lftp_lib_readline.m4 is fixed upstream +CONFIGURE_ARGS+= --with-readline=${LOCALBASE} + PORTDOCS= AUTHORS BUGS ChangeLog FAQ FEATURES INSTALL \ MIRRORS NEWS README README.debug-levels README.modules \ THANKS TODO
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806121128.w5CBSgbI034646>