From owner-svn-ports-branches@freebsd.org Sat Jan 7 21:21:27 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09CB7CA49F9; Sat, 7 Jan 2017 21:21:27 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD41C12EB; Sat, 7 Jan 2017 21:21:26 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v07LLQr3097168; Sat, 7 Jan 2017 21:21:26 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v07LLPkP097166; Sat, 7 Jan 2017 21:21:25 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201701072121.v07LLPkP097166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 7 Jan 2017 21:21:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r430833 - in branches/2017Q1/math: R libRmath X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jan 2017 21:21:27 -0000 Author: antoine Date: Sat Jan 7 21:21:25 2017 New Revision: 430833 URL: https://svnweb.freebsd.org/changeset/ports/430833 Log: MFH: r430752 Fix configure with zlib 1.2.10, configure script believes that version 1.2.10 is lower than 1.2.5 Reported by: pkg-fallout Modified: branches/2017Q1/math/R/Makefile branches/2017Q1/math/libRmath/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/math/R/Makefile ============================================================================== --- branches/2017Q1/math/R/Makefile Sat Jan 7 21:20:13 2017 (r430832) +++ branches/2017Q1/math/R/Makefile Sat Jan 7 21:21:25 2017 (r430833) @@ -18,6 +18,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ CONFIGURE_ARGS= --disable-java \ --with-readline \ rdocdir=${DOCSDIR} +CONFIGURE_ENV= r_cv_header_zlib_h=yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip ONLY_FOR_ARCHS= i386 amd64 Modified: branches/2017Q1/math/libRmath/Makefile ============================================================================== --- branches/2017Q1/math/libRmath/Makefile Sat Jan 7 21:20:13 2017 (r430832) +++ branches/2017Q1/math/libRmath/Makefile Sat Jan 7 21:21:25 2017 (r430833) @@ -21,7 +21,7 @@ CONFIGURE_ARGS= --disable-nls --with-IC --with-jpeglib=no --with-libpng=no --with-libtiff=no \ --with-readline=no --with-tcltk=no --with-x=no \ --without-libintl-prefix -CONFIGURE_ENV+= ac_cv_header_iconv_h=no +CONFIGURE_ENV+= ac_cv_header_iconv_h=no r_cv_header_zlib_h=yes GNU_CONFIGURE= yes RMATH_SOVERSION= 1 USES= fortran localbase