svn commit: r426331 - head/ftp/ncftp3

John Marino marino at FreeBSD.org
Fri Nov 18 17:56:18 UTC 2016


Author: marino
Date: Fri Nov 18 17:56:16 2016
New Revision: 426331
URL: https://svnweb.freebsd.org/changeset/ports/426331

Log:
  ftp/ncftp3: Skip faulty ncurses.h header check
  
  The ncurses.h header configure check doesn't use cflags apparently thus
  returning a false negative on the presence of the ncurses headers (it
  picks up base headers if they exist instead).  Just cache the test result
  as "yes" to fix the build for ports-based ncurses.

Modified:
  head/ftp/ncftp3/Makefile

Modified: head/ftp/ncftp3/Makefile
==============================================================================
--- head/ftp/ncftp3/Makefile	Fri Nov 18 17:10:11 2016	(r426330)
+++ head/ftp/ncftp3/Makefile	Fri Nov 18 17:56:16 2016	(r426331)
@@ -20,6 +20,7 @@ USES=		ncurses tar:bzip2
 WRKSRC=		${WRKDIR}/${DISTNAME:S/-src//}
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
+CONFIGURE_ENV+=	ac_cv_header_ncurses_h=yes
 
 PORTDOCS=	*
 


More information about the svn-ports-all mailing list