summaryrefslogtreecommitdiff
path: root/devel/libhfs/patches
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2005-12-15 22:14:15 +0000
committerjoerg <joerg@pkgsrc.org>2005-12-15 22:14:15 +0000
commit3837973bfb163a59b69ea7e33c986ad18b58c0c8 (patch)
treea9ae82469f81deca2f2327ed70d792f644712cf8 /devel/libhfs/patches
parent1a2f8edb4633eb6f888652496f47579413238a5a (diff)
downloadpkgsrc-3837973bfb163a59b69ea7e33c986ad18b58c0c8.tar.gz
Fix errno. Installed files changed -> bump revision.
Diffstat (limited to 'devel/libhfs/patches')
-rw-r--r--devel/libhfs/patches/patch-ac15
-rw-r--r--devel/libhfs/patches/patch-ad13
2 files changed, 17 insertions, 11 deletions
diff --git a/devel/libhfs/patches/patch-ac b/devel/libhfs/patches/patch-ac
index 71c17680aa8..10267ea261f 100644
--- a/devel/libhfs/patches/patch-ac
+++ b/devel/libhfs/patches/patch-ac
@@ -1,15 +1,18 @@
-$NetBSD: patch-ac,v 1.3 1999/12/02 19:05:06 fredb Exp $
+$NetBSD: patch-ac,v 1.4 2005/12/15 22:14:15 joerg Exp $
---- libhfs/libhfs.h.orig Mon Nov 15 19:52:30 1999
-+++ libhfs/libhfs.h Mon Nov 15 19:52:30 1999
-@@ -19,8 +19,8 @@
+--- libhfs/libhfs.h.orig 2005-12-15 22:07:50.000000000 +0000
++++ libhfs/libhfs.h
+@@ -19,10 +19,9 @@
* Id: libhfs.h,v 1.7 1998/11/02 22:09:02 rob Exp
*/
-# include "hfs.h"
-# include "apple.h"
+-
+-extern int errno;
+# include <hfs.h>
+# include <apple.h>
++#include <errno.h>
- extern int errno;
-
+ # define ERROR(code, str) \
+ do { hfs_error = (str), errno = (code); goto fail; } while (0)
diff --git a/devel/libhfs/patches/patch-ad b/devel/libhfs/patches/patch-ad
index 70363af6861..55c24d292d7 100644
--- a/devel/libhfs/patches/patch-ad
+++ b/devel/libhfs/patches/patch-ad
@@ -1,13 +1,16 @@
-$NetBSD: patch-ad,v 1.3 1999/12/02 19:05:06 fredb Exp $
+$NetBSD: patch-ad,v 1.4 2005/12/15 22:14:15 joerg Exp $
---- librsrc/librsrc.h.orig Mon Nov 15 19:52:30 1999
-+++ librsrc/librsrc.h Mon Nov 15 19:52:30 1999
-@@ -19,7 +19,7 @@
+--- librsrc/librsrc.h.orig 2005-12-15 22:09:15.000000000 +0000
++++ librsrc/librsrc.h
+@@ -19,9 +19,9 @@
* Id: librsrc.h,v 1.5 1998/04/11 08:27:19 rob Exp
*/
-# include "rsrc.h"
+# include <rsrc.h>
++#include <errno.h>
- extern int errno;
+-extern int errno;
+ # define ERROR(code, str) \
+ do { rsrc_error = (str), errno = (code); goto fail; } while (0)