diff options
author | mrg <mrg@pkgsrc.org> | 1999-10-31 10:46:30 +0000 |
---|---|---|
committer | mrg <mrg@pkgsrc.org> | 1999-10-31 10:46:30 +0000 |
commit | 4813f1d22dfd4ef22e8d2e1bc84819baad6ec59c (patch) | |
tree | bef1063cc3e63fb8c97f2f88b4d0ceee5d39a863 /graphics | |
parent | 15d0178f3efdcf5ab2da4be6bb1813f5e155d530 (diff) | |
download | pkgsrc-4813f1d22dfd4ef22e8d2e1bc84819baad6ec59c.tar.gz |
make sure we apply OSF/DUh/Tru64 UNIX parts of Imakefiles only on those
platforms (ie, not just `AlphaArchitecture'). this showed up under
xpkgwedge where it was attempting to link in -lXext but not finding it.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xpm/files/patch-sum | 3 | ||||
-rw-r--r-- | graphics/xpm/patches/patch-ac | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/graphics/xpm/files/patch-sum b/graphics/xpm/files/patch-sum index 139423a3c4b..df6e2f23d41 100644 --- a/graphics/xpm/files/patch-sum +++ b/graphics/xpm/files/patch-sum @@ -1,4 +1,5 @@ -$NetBSD: patch-sum,v 1.2 1999/10/05 06:15:56 jlam Exp $ +$NetBSD: patch-sum,v 1.3 1999/10/31 10:46:30 mrg Exp $ MD5 (patch-aa) = 9a0ceefeac0a81870101f78c876d8aed MD5 (patch-ab) = e932d75cfced5f6390823afc3e30ee87 +MD5 (patch-ac) = a1efac302d48a7b3a7f3ced23321f316 diff --git a/graphics/xpm/patches/patch-ac b/graphics/xpm/patches/patch-ac new file mode 100644 index 00000000000..73e6bad63d8 --- /dev/null +++ b/graphics/xpm/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 1999/10/31 10:46:31 mrg Exp $ + +--- lib/Imakefile.orig Fri Mar 20 06:50:59 1998 ++++ lib/Imakefile Sun Oct 31 21:39:04 1999 +@@ -55,7 +55,7 @@ + #endif + + XCOMM on Dec Alpha we need to define the following to build the shared library +-#ifdef AlphaArchitecture ++#if defined(AlphaArchitecture) && defined(ModernOSF1) + REQUIREDLIBS = $(LDPRELIB) $(XLIB) + SO_REQLIBS = -lX11 -lc + #endif |