diff options
author | John Marino <marino@FreeBSD.org> | 2015-02-18 08:56:49 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-02-18 08:56:49 +0000 |
commit | db259dc4bf81f1466f008e640d765bb2660d716b (patch) | |
tree | 9962b8e7ac03ebef787d85f79ae959b127cd4a38 /graphics/dcraw-m | |
parent | e8397aeef9e5b83af9f3bf2b197744b40b77697f (diff) | |
download | freebsd-ports-db259dc4bf81f1466f008e640d765bb2660d716b.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/dcraw-m')
-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 |