Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jun 2016 12:23:07 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
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
Message-ID:  <201606061223.u56CN7bZ021835@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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(<H>) {
+         if (/^#define (CURL[A-Za-z0-9_]*)/) {
++            next if $1 eq 'CURL_DID_MEMORY_FUNC_TYPEDEFS';
+             push @syms, $1;
+         }
+     }



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