Summary: | devel/swig20 generated wrappers incompatibility with clang | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Diane Bruce <db> |
Component: | Individual Port(s) | Assignee: | freebsd-ports-bugs (Nobody) <ports-bugs> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Diane Bruce
2014-02-06 21:00:00 UTC
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) Maintainer of devel/swig20, Please note that PR ports/186521 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/186521 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org Author: db Date: Thu Feb 27 14:32:57 2014 New Revision: 346349 URL: http://svnweb.freebsd.org/changeset/ports/346349 QAT: https://qat.redports.org/buildarchive/r346349/ Log: - swig generated header uses #include <string.h> which is insufficient for clang PR: ports/186521 Approved by: maintainer (timeout > 14 days) Added: head/devel/swig20/files/patch-Lib_swigrun.swg (contents, props changed) Modified: head/devel/swig20/Makefile Modified: head/devel/swig20/Makefile ============================================================================== --- head/devel/swig20/Makefile Thu Feb 27 14:31:33 2014 (r346348) +++ head/devel/swig20/Makefile Thu Feb 27 14:32:57 2014 (r346349) @@ -3,6 +3,7 @@ PORTNAME= swig PORTVERSION= 2.0.11 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} Added: head/devel/swig20/files/patch-Lib_swigrun.swg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/swig20/files/patch-Lib_swigrun.swg Thu Feb 27 14:32:57 2014 (r346349) @@ -0,0 +1,10 @@ +--- Lib/swigrun.swg.orig 2013-09-15 09:11:43.000000000 -0500 ++++ Lib/swigrun.swg 2014-02-06 14:04:08.000000000 -0500 +@@ -176,6 +176,7 @@ + #include <string.h> + + #ifdef __cplusplus ++#include <string> + extern "C" { + #endif + _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: feedback->closed Committed fix for clang |