diff options
author | markd <markd@pkgsrc.org> | 2014-01-14 08:49:53 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2014-01-14 08:49:53 +0000 |
commit | 3c829b2bfcea0fcefec7ae290836e3051f788efc (patch) | |
tree | cea2cac4e5ace550f541fbb47b1a3e9f0b027c39 /print/poppler | |
parent | c77f9026718cd5f2ce31376e59dd71ec10b7c0d1 (diff) | |
download | pkgsrc-3c829b2bfcea0fcefec7ae290836e3051f788efc.tar.gz |
Explicitly disable finding libtiff. Fixes build on systems that have
libtiff in /usr/lib (eg some linux systems).
Diffstat (limited to 'print/poppler')
-rw-r--r-- | print/poppler/Makefile.common | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/print/poppler/Makefile.common b/print/poppler/Makefile.common index 43041f54b3f..5a56b279e94 100644 --- a/print/poppler/Makefile.common +++ b/print/poppler/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.61 2014/01/06 14:32:33 wiz Exp $ +# $NetBSD: Makefile.common,v 1.62 2014/01/14 08:49:53 markd Exp $ # # used by print/poppler/Makefile # used by print/poppler-cpp/Makefile @@ -22,3 +22,7 @@ PATCHDIR= ${.CURDIR}/../../print/poppler/patches USE_TOOLS+= pkg-config USE_LIBTOOL= yes USE_LANGUAGES= c c++ + +# Don't accidentally find libtiff +CONFIGURE_ARGS+= --disable-libtiff + |