summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Kubo da Costa <rakuco@FreeBSD.org>2015-08-30 19:44:54 +0000
committerRaphael Kubo da Costa <rakuco@FreeBSD.org>2015-08-30 19:44:54 +0000
commit7c2b19e9c50d845c5f593e025d1aa5e219ce2e59 (patch)
tree98b3db3d4d6c912989d4e0cf83e6f54316a4711a
parent- Update to 0.5.11 (diff)
Add upstream patch to make the build work with non-base (ie. newer) GCCs.
The build was failing with, for example, lang/gcc48: In file included from /usr/ports/devel/cmake/work/cmake-3.2.3/Source/cmGlobalNinjaGenerator.cxx:14:0: /usr/ports/devel/cmake/work/cmake-3.2.3/Source/cmGeneratorExpressionEvaluationFile.h:39:64: error: 'mode_t' has not been declared std::map<std::string, std::string> &outputFiles, mode_t perm);
Notes
Notes: svn path=/head/; revision=395637
-rw-r--r--devel/cmake/files/patch-git_c775072a20
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/cmake/files/patch-git_c775072a b/devel/cmake/files/patch-git_c775072a
new file mode 100644
index 000000000000..b867712d24a6
--- /dev/null
+++ b/devel/cmake/files/patch-git_c775072a
@@ -0,0 +1,20 @@
+commit c775072ad5a93306183f83f4396268b1690bb392
+Author: Brad King <brad.king@kitware.com>
+Date: Wed Apr 22 09:58:46 2015 -0400
+
+ cmGeneratorExpressionEvaluationFile: Add missing sys/types.h include
+
+ This is needed for 'mode_t', and on mingw-w64 in particular. We added
+ use of 'mode_t' in commit v3.2.0-rc1~421^2 (file(GENERATE): Use
+ permissions of input file if present, 2014-07-22).
+
+--- Source/cmGeneratorExpressionEvaluationFile.h
++++ Source/cmGeneratorExpressionEvaluationFile.h
+@@ -13,6 +13,7 @@
+ #define cmGeneratorExpressionEvaluationFile_h
+
+ #include "cmStandardIncludes.h"
++#include <sys/types.h>
+ #include <cmsys/auto_ptr.hxx>
+
+ #include "cmGeneratorExpression.h"