diff options
author | marino <marino@FreeBSD.org> | 2015-02-18 16:56:49 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-02-18 16:56:49 +0800 |
commit | 34261421824e6eae78dbda04658e7e6c22b05c1e (patch) | |
tree | 9962b8e7ac03ebef787d85f79ae959b127cd4a38 /graphics | |
parent | 7e863f1fc0c639e4e74fd169da698102a8c2a2d6 (diff) | |
download | freebsd-ports-gnome-34261421824e6eae78dbda04658e7e6c22b05c1e.tar.gz freebsd-ports-gnome-34261421824e6eae78dbda04658e7e6c22b05c1e.tar.zst freebsd-ports-gnome-34261421824e6eae78dbda04658e7e6c22b05c1e.zip |
graphics/dcraw-m: Remove -Werror to restore build on DF
With gcc47+, variable 'type' is set but not used, which generates warning.
The -Werror flag should never be set in ports.
PR: 197329
Submitted by: marino@
Approved by: maintainer timeout
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/dcraw-m/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/dcraw-m/Makefile b/graphics/dcraw-m/Makefile index 793a89022991..462bd2c34a02 100644 --- a/graphics/dcraw-m/Makefile +++ b/graphics/dcraw-m/Makefile @@ -25,7 +25,7 @@ GH_COMMIT= 1392579 USES= pkgconfig -CFLAGS += -Wall -Werror -I${LOCALBASE}/include \ +CFLAGS += -Wall -I${LOCALBASE}/include \ `MagickWand-config --cflags --cppflags` \ -DMAGICKCORE_HDRI_ENABLE=0 \ -DMAGICKCORE_QUANTUM_DEPTH=16 |