summaryrefslogtreecommitdiff
path: root/graphics/xv/patches
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/patches
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/patches')
-rw-r--r--graphics/xv/patches/patch-af4
1 files changed, 2 insertions, 2 deletions
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]