Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Feb 2016 23:11:40 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r408318 - head/devel/ncurses
Message-ID:  <201602062311.u16NBe3H017100@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Sat Feb  6 23:11:40 2016
New Revision: 408318
URL: https://svnweb.freebsd.org/changeset/ports/408318

Log:
  devel/ncurses: Prevent configure from touching LOCALBASE
  
  Synth detected that devel/ncurses was touching $LOCALBASE/lib during
  the build, and narrowing it down, it turned out to be configure:
  
     Modified files/directories:
          usr/local/lib [ modification ]
  
  Throught manual inspect, I tracked this down to the long names support
  test.  Caching the conf value to "yes" results in all phases between
  configure and stage (inclusive) not touch base.
  
  Approved by:	just fix it

Modified:
  head/devel/ncurses/Makefile

Modified: head/devel/ncurses/Makefile
==============================================================================
--- head/devel/ncurses/Makefile	Sat Feb  6 22:55:10 2016	(r408317)
+++ head/devel/ncurses/Makefile	Sat Feb  6 23:11:40 2016	(r408318)
@@ -32,7 +32,8 @@ CONFIGURE_ARGS=	--datadir=${PREFIX}/shar
 		--without-manpage-renames \
 		--mandir=${MANPREFIX}/man \
 		--with-hashed-db \
-		--with-pkg-config-libdir=${PREFIX}/libdata/pkgconfig
+		--with-pkg-config-libdir=${PREFIX}/libdata/pkgconfig \
+		ac_cv_sys_long_file_names=yes
 MAKE_JOBS_UNSAFE=	yes
 
 OPTIONS_DEFINE=	TRACE DEBUG PROFILE EXAMPLES DOCS



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