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 | eb31fbd49452b1003a91d4fe4c921e8689602b8c (patch) | |
tree | cea2cac4e5ace550f541fbb47b1a3e9f0b027c39 /print | |
parent | 56d2c4ead8e0f30602cb887db2549cd280d27481 (diff) | |
download | pkgsrc-eb31fbd49452b1003a91d4fe4c921e8689602b8c.tar.gz |
Explicitly disable finding libtiff. Fixes build on systems that have
libtiff in /usr/lib (eg some linux systems).
Diffstat (limited to 'print')
-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 + |