Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Mar 2014 17:58:48 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r347897 - head/devel/git
Message-ID:  <201403111758.s2BHwmaJ008196@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Tue Mar 11 17:58:47 2014
New Revision: 347897
URL: http://svnweb.freebsd.org/changeset/ports/347897
QAT: https://qat.redports.org/buildarchive/r347897/

Log:
  Prevent detection of libcharset.h from converters/libiconv.
  
  This forces git to use nl_langinfo() from libc instead of locale_charset()
  from libiconv.  (The latter is practically an alias for the first.)
  
  PR:		ports/187326
  Approved by:	wxs (maintainer)

Modified:
  head/devel/git/Makefile

Modified: head/devel/git/Makefile
==============================================================================
--- head/devel/git/Makefile	Tue Mar 11 17:58:15 2014	(r347896)
+++ head/devel/git/Makefile	Tue Mar 11 17:58:47 2014	(r347897)
@@ -32,7 +32,7 @@ MAKE_ENV+=	V=1
 USE_OPENSSL=	yes
 USE_RC_SUBR=	git_daemon
 
-CONFIGURE_ARGS=	--enable-pthreads=-pthread
+CONFIGURE_ARGS=	--enable-pthreads=-pthread ac_cv_header_libcharset_h=no
 
 OPTIONS_DEFINE=	GUI SVN GITWEB CONTRIB P4 CVS HTMLDOCS PERL ICONV CURL \
 		ETCSHELLS NLS



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