diff options
author | tez <tez@pkgsrc.org> | 2011-06-21 16:20:51 +0000 |
---|---|---|
committer | tez <tez@pkgsrc.org> | 2011-06-21 16:20:51 +0000 |
commit | 1401f39ab0bd94aaf0618191a171857ffacfbc03 (patch) | |
tree | 28ced429a3bb0d92c1f0fbadd46e4c62b33994a7 | |
parent | 051cb28f9f55b9be941444dc20748f6260bceca2 (diff) | |
download | pkgsrc-1401f39ab0bd94aaf0618191a171857ffacfbc03.tar.gz |
The solaris stdbool.h requires c99 which is fine for jasper, but
not so good for things that depend upon jasper. See PR#43901
This stops jasper from using stdbool.h (on solaris only.)
-rw-r--r-- | graphics/jasper/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/graphics/jasper/Makefile b/graphics/jasper/Makefile index a59e80caf31..ee5aafe5bd0 100644 --- a/graphics/jasper/Makefile +++ b/graphics/jasper/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2010/12/23 11:44:40 dsainty Exp $ +# $NetBSD: Makefile,v 1.33 2011/06/21 16:20:51 tez Exp $ DISTNAME= jasper-1.900.1 PKGREVISION= 5 @@ -18,6 +18,11 @@ USE_LIBTOOL= yes GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-shared --without-x --disable-opengl +# The solaris stdbool.h requires c99 which is fine for jasper, but +# not so good for things that depend upon jasper. See PR#43901 +OPSYSVARS+= CONFIGURE_ENV +CONFIGURE_ENV.SunOS+= ac_cv_header_stdbool_h=no + INSTALLATION_DIRS+= share/doc/jasper post-install: |