From 944822a56cd5cea86104abf8ecf11ff76daaedfa Mon Sep 17 00:00:00 2001 From: espie Date: Sun, 17 Jun 2012 21:55:20 +0000 Subject: [PATCH] make very sure we don't get a wandering libtool software has a piece of shit configure script (oxymoron) that does detect libtool is present, but produces crap when it discovers it's not gnu libtool. of course, checking for features is too complicated, so it just asks libtool --version and checks for "GNU libtool". morons. --- graphics/dcmtk/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/graphics/dcmtk/Makefile b/graphics/dcmtk/Makefile index afd015c01ce..630f3a29765 100644 --- a/graphics/dcmtk/Makefile +++ b/graphics/dcmtk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 2011/09/16 10:02:36 espie Exp $ +# $OpenBSD: Makefile,v 1.10 2012/06/17 21:55:20 espie Exp $ COMMENT= DICOM toolkit @@ -33,7 +33,8 @@ CONFIGURE_ARGS= --disable-threads \ --with-libpng --with-libpnginc=${LOCALBASE} \ --with-libxml --with-libxmlinc=${LOCALBASE} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" + LDFLAGS="-L${LOCALBASE}/lib" \ + ac_cv_prog_LIBTOOL=: MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/config FAKE_FLAGS= DESTDIR=${WRKINST} \ etcdir=${WRKINST}${PREFIX}/share/examples/dcmtk \