diff options
author | jschauma <jschauma@pkgsrc.org> | 2004-09-05 16:49:03 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2004-09-05 16:49:03 +0000 |
commit | fcbb108d2015f79960c40f449d40d17076791153 (patch) | |
tree | fbfa901abea526e807c10a923510592420a0e588 /graphics | |
parent | 4c849ca7db4714fda58dae29c155159a88c7a2c9 (diff) | |
download | pkgsrc-fcbb108d2015f79960c40f449d40d17076791153.tar.gz |
When ``relativize''-ing CFLAGS, don't substitute anything that begins
with a '-' as '../-', as this is basically guaranteed to be wrong.
Examples: -n32 or -64 for IRIX ABI would be substituted as '../-64',
which of course breaks the package. Other possible CFLAGS would
have the same result.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/tiff/distinfo | 4 | ||||
-rw-r--r-- | graphics/tiff/patches/patch-aa | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/graphics/tiff/distinfo b/graphics/tiff/distinfo index fc04a38f4c5..3b44cdbf140 100644 --- a/graphics/tiff/distinfo +++ b/graphics/tiff/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2004/04/27 22:38:51 tv Exp $ +$NetBSD: distinfo,v 1.17 2004/09/05 16:49:03 jschauma Exp $ SHA1 (tiff-3.6.1/tiff-v3.6.1.tar.gz) = f7817145d8756152cc341804df6477f37ef93c38 Size (tiff-3.6.1/tiff-v3.6.1.tar.gz) = 1072165 bytes @@ -6,7 +6,7 @@ SHA1 (tiff-3.6.1/TIFFTechNote2.html) = bf202e0ded764f0f6b9cda673245dea4ebfaf73f Size (tiff-3.6.1/TIFFTechNote2.html) = 35698 bytes SHA1 (tiff-3.6.1/libtiff-lzw-compression-kit-1.5.tar.gz) = 97d103ca8595cf6759fc6c52f4199be4b02b95b0 Size (tiff-3.6.1/libtiff-lzw-compression-kit-1.5.tar.gz) = 9646 bytes -SHA1 (patch-aa) = f7e1947a088c519a87be89b464eebf362962aeab +SHA1 (patch-aa) = b3f0850bd47805f54e44e8160baf237fd511e0a5 SHA1 (patch-ab) = 186b597cb44768570d844d55a4f4358a89974633 SHA1 (patch-ac) = 754a02bb0561f8944fa1c870ab8dd6c1d6bf0c49 SHA1 (patch-ad) = b48c93d29d5ff39079b6d320c5e67d9c1cdde8c7 diff --git a/graphics/tiff/patches/patch-aa b/graphics/tiff/patches/patch-aa index 51c0373e85c..ffca752bf25 100644 --- a/graphics/tiff/patches/patch-aa +++ b/graphics/tiff/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.13 2004/04/12 14:41:03 jschauma Exp $ +$NetBSD: patch-aa,v 1.14 2004/09/05 16:49:03 jschauma Exp $ --- configure.orig Mon Apr 12 09:58:40 2004 +++ configure Mon Apr 12 10:01:34 2004 @@ -29,12 +29,13 @@ $NetBSD: patch-aa,v 1.13 2004/04/12 14:41:03 jschauma Exp $ test -z "${ENVOPTS-}" && ENVOPTS="${C_ANSI-}" return 0 } -@@ -1743,6 +1743,8 @@ +@@ -1743,6 +1743,9 @@ -[LR]/*) echo "$i" ;; -L*) echo "$i" | sed 's;^-L;-L../;' ;; -R*) echo "$i" | sed 's;^-R;-R../;' ;; + -rpath*) echo "$i" ;; + -W*) echo "$i" ;; ++ -*) echo "$i" ;; *) echo "../$i" ;; esac done) | tr '\012' ' ' |