diff options
author | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2015-08-08 04:56:57 +0000 |
---|---|---|
committer | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2015-08-08 04:56:57 +0000 |
commit | 07e553100e5a6160a56869474b1405e36a286ecf (patch) | |
tree | 670175067c54ee7b04bff8e09203ed30568a5c19 | |
parent | Fix a distinfo botch resulting from rolling back the date in PORTVERSION. (diff) |
- Fix a build problem in devel/gcc-arm-embedded on FreeBSD 9 due the old gcc
PR: 202030
Notes
Notes:
svn path=/head/; revision=393708
-rw-r--r-- | devel/isl/Makefile | 1 | ||||
-rw-r--r-- | devel/isl/files/patch-include_isl_ctx.h | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/devel/isl/Makefile b/devel/isl/Makefile index 7cd69ccb2fef..c210a607520c 100644 --- a/devel/isl/Makefile +++ b/devel/isl/Makefile @@ -3,6 +3,7 @@ PORTNAME= isl PORTVERSION= 0.15 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://isl.gforge.inria.fr/ diff --git a/devel/isl/files/patch-include_isl_ctx.h b/devel/isl/files/patch-include_isl_ctx.h new file mode 100644 index 000000000000..146889b35da6 --- /dev/null +++ b/devel/isl/files/patch-include_isl_ctx.h @@ -0,0 +1,11 @@ +--- include/isl/ctx.h.orig 2015-08-07 18:18:01 UTC ++++ include/isl/ctx.h +@@ -80,7 +80,7 @@ enum isl_error { + }; + typedef enum { + isl_stat_error = -1, +- isl_stat_ok = 0, ++ isl_stat_ok = 0 + } isl_stat; + typedef enum { + isl_bool_error = -1, |