diff options
author | jlam <jlam> | 2001-08-23 21:32:17 +0000 |
---|---|---|
committer | jlam <jlam> | 2001-08-23 21:32:17 +0000 |
commit | bc05fed8033ac3eb81ee4851e248be44dd6634f7 (patch) | |
tree | 297975e4f0b2102191c6193ce67a5d664e9ff8bb /graphics/autotrace | |
parent | b37fe497fb75cc32cefed9258065b841455fd673 (diff) | |
download | pkgsrc-bc05fed8033ac3eb81ee4851e248be44dd6634f7.tar.gz |
Use ${MAGICK_CONFIG} instead of Magick-config.
Diffstat (limited to 'graphics/autotrace')
-rw-r--r-- | graphics/autotrace/distinfo | 3 | ||||
-rw-r--r-- | graphics/autotrace/patches/patch-ab | 25 |
2 files changed, 27 insertions, 1 deletions
diff --git a/graphics/autotrace/distinfo b/graphics/autotrace/distinfo index 96c4ac394c6..d34fa1850d0 100644 --- a/graphics/autotrace/distinfo +++ b/graphics/autotrace/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2001/04/21 09:54:08 wiz Exp $ +$NetBSD: distinfo,v 1.3 2001/08/23 21:32:17 jlam Exp $ SHA1 (autotrace-0.26.tar.gz) = 5d0d86e9eacdfb8ccb5214735b316cd345f8e5bb Size (autotrace-0.26.tar.gz) = 119613 bytes SHA1 (patch-aa) = f90fae93064171c057873489dc7daa26048dc118 +SHA1 (patch-ab) = fd641419c0402854955419c238e42f06197665d6 diff --git a/graphics/autotrace/patches/patch-ab b/graphics/autotrace/patches/patch-ab new file mode 100644 index 00000000000..9ce74e19983 --- /dev/null +++ b/graphics/autotrace/patches/patch-ab @@ -0,0 +1,25 @@ +$NetBSD: patch-ab,v 1.1 2001/08/23 21:32:18 jlam Exp $ + +--- configure.orig Wed Nov 15 12:11:09 2000 ++++ configure +@@ -1139,9 +1139,9 @@ + echo "$ac_t""no" 1>&6 + fi + +-if test "x$MAGICK_CONFIG" = "xMagick-config" ; then ++if test "x$MAGICK_CONFIG" != "x" ; then + CPPFLAGS_BACKUP="$CPPFLAGS" +- CPPFLAGS=`Magick-config --cppflags` ++ CPPFLAGS=`$MAGICK_CONFIG --cppflags` + ac_safe=`echo "magick/api.h" | sed 'y%./+-%__p_%'` + echo $ac_n "checking for magick/api.h""... $ac_c" 1>&6 + echo "configure:1148: checking for magick/api.h" >&5 +@@ -1180,7 +1180,7 @@ + CPPFLAGS=${CPPFLAGS_BACKUP} + + if test "x${magick_header_found}" = xyes ; then +- MAGICK_LDFLAGS="`Magick-config --ldflags` `Magick-config --libs`" ++ MAGICK_LDFLAGS="`$MAGICK_CONFIG --ldflags` `$MAGICK_CONFIG --libs`" + + + HAVE_MAGICK=yes |