From owner-svn-ports-all@freebsd.org Mon Jun 6 12:23:08 2016 Return-Path: Delivered-To: svn-ports-all@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 F131FB6DFD8; Mon, 6 Jun 2016 12:23:08 +0000 (UTC) (envelope-from amdmi3@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 C31B31E61; Mon, 6 Jun 2016 12:23:08 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u56CN8rZ021836; Mon, 6 Jun 2016 12:23:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u56CN7bZ021835; Mon, 6 Jun 2016 12:23:07 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201606061223.u56CN7bZ021835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 6 Jun 2016 12:23:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416456 - head/www/p5-WWW-Curl/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jun 2016 12:23:09 -0000 Author: amdmi3 Date: Mon Jun 6 12:23:07 2016 New Revision: 416456 URL: https://svnweb.freebsd.org/changeset/ports/416456 Log: - Fix build CURL_DID_MEMORY_FUNC_TYPEDEFS define is not a constant, don't try to treat it like one Approved by: portmgr blanket Added: head/www/p5-WWW-Curl/files/ head/www/p5-WWW-Curl/files/patch-Makefile.PL (contents, props changed) Added: head/www/p5-WWW-Curl/files/patch-Makefile.PL ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-WWW-Curl/files/patch-Makefile.PL Mon Jun 6 12:23:07 2016 (r416456) @@ -0,0 +1,10 @@ +--- Makefile.PL.orig 2014-02-21 16:08:09 UTC ++++ Makefile.PL +@@ -121,6 +121,7 @@ if (!defined($curl_h)) { + open (H, "<", $curl_h) or die ("Cannot open $curl_h: ".$!); + while() { + if (/^#define (CURL[A-Za-z0-9_]*)/) { ++ next if $1 eq 'CURL_DID_MEMORY_FUNC_TYPEDEFS'; + push @syms, $1; + } + }