summaryrefslogtreecommitdiff
path: root/graphics/xv
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2011-02-14 20:37:40 +0000
committerwiz <wiz@pkgsrc.org>2011-02-14 20:37:40 +0000
commitb1d6207ed11bb8cd7a7456e32205c2aca40e8638 (patch)
treeffc4069f2cecd99cabd84dfa5a060902b4fa14a1 /graphics/xv
parent9bf1aaa9c06adf586224ab7599cc9189c3a52197 (diff)
downloadpkgsrc-b1d6207ed11bb8cd7a7456e32205c2aca40e8638.tar.gz
Fix linking on Solaris 9, per Stefan in PR 44572.
Let's see if I got him right.
Diffstat (limited to 'graphics/xv')
-rw-r--r--graphics/xv/distinfo4
-rw-r--r--graphics/xv/patches/patch-af4
2 files changed, 4 insertions, 4 deletions
diff --git a/graphics/xv/distinfo b/graphics/xv/distinfo
index 8f59402a40c..4137fbda465 100644
--- a/graphics/xv/distinfo
+++ b/graphics/xv/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.17 2011/01/23 23:58:01 dholland Exp $
+$NetBSD: distinfo,v 1.18 2011/02/14 20:37:40 wiz Exp $
SHA1 (xv-3.10a-jumbo-patches-20070520.tar.gz) = d00308c1687d9d803d26ef40c73d19a0f593c626
RMD160 (xv-3.10a-jumbo-patches-20070520.tar.gz) = 23bc07030416ebaca5ce4d223921e33094c37b93
@@ -11,5 +11,5 @@ SHA1 (patch-ab) = 5bfc8ae09b029e4661b27d94bba46540c7f320fb
SHA1 (patch-ac) = a17b0095e6586b595190a07126ac58752d8a2562
SHA1 (patch-ad) = d1fa6ae4c432528148ebe37b7a8bef8bd2059997
SHA1 (patch-ae) = f17f17ac49dafb233cc9f0629f2425120a6b5495
-SHA1 (patch-af) = b7c97fc2018083409b49f9607fc00160b07962dd
+SHA1 (patch-af) = 7f6e771788e04577d8db17bfe8fbcce8dca4a600
SHA1 (patch-ag) = 120d589f728fd32ea267fd46bcc16f27d9f08116
diff --git a/graphics/xv/patches/patch-af b/graphics/xv/patches/patch-af
index ee41e301fd8..6395aa48f45 100644
--- a/graphics/xv/patches/patch-af
+++ b/graphics/xv/patches/patch-af
@@ -1,4 +1,4 @@
-$NetBSD: patch-af,v 1.8 2011/01/23 23:58:01 dholland Exp $
+$NetBSD: patch-af,v 1.9 2011/02/14 20:37:40 wiz Exp $
Config fixups.
- don't declare errno and sys_errlist
@@ -32,7 +32,7 @@ Config fixups.
# define ERRSTR(x) strerror(x, vaxc$errno)
#else
-# if defined(__BEOS__) || defined(__linux__) /* or all modern/glibc systems? */
-+# if defined(__BEOS__) || defined(__linux__) || defined(__INTERIX) /* or all modern/glibc systems? */
++# if defined(__BEOS__) || defined(__linux__) || defined(__INTERIX) || defined(__sun) /* or all modern/glibc systems? */
# define ERRSTR(x) strerror(x)
# else
# define ERRSTR(x) sys_errlist[x]