diff options
author | hubertf <hubertf@pkgsrc.org> | 2002-04-05 11:45:24 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2002-04-05 11:45:24 +0000 |
commit | 83b87ba2d01fe58771448c5c9a41033052fdfac2 (patch) | |
tree | 2ba1b2cdb6fe60f660b326ea45d6bdfa00307c5b /emulators/wine | |
parent | bd9eb3d92b464c037f5e97c6480c9d02083ecaf1 (diff) | |
download | pkgsrc-83b87ba2d01fe58771448c5c9a41033052fdfac2.tar.gz |
Seems wine needs <sys/inttypes.h> in one place...
(couldn't types.h pull that in????)
Diffstat (limited to 'emulators/wine')
-rw-r--r-- | emulators/wine/distinfo | 3 | ||||
-rw-r--r-- | emulators/wine/patches/patch-ab | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/emulators/wine/distinfo b/emulators/wine/distinfo index 8b0855fb47c..3f61b1e1fcd 100644 --- a/emulators/wine/distinfo +++ b/emulators/wine/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2002/03/15 04:10:20 junyoung Exp $ +$NetBSD: distinfo,v 1.5 2002/04/05 11:45:24 hubertf Exp $ SHA1 (Wine-20020228.tar.gz) = 4e275f639200752126ebdfdca23daa7f692dbfb4 Size (Wine-20020228.tar.gz) = 6970746 bytes SHA1 (patch-aa) = bf45f5b343bda55a0809459469a2476b566ad7d5 +SHA1 (patch-ab) = a50c3a1a6fd5bcc7b6fc230435da64bc70767c9c diff --git a/emulators/wine/patches/patch-ab b/emulators/wine/patches/patch-ab new file mode 100644 index 00000000000..98304aaadf8 --- /dev/null +++ b/emulators/wine/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.8 2002/04/05 11:45:24 hubertf Exp $ + +--- library/port.c.orig Mon Jan 7 22:00:28 2002 ++++ library/port.c +@@ -38,6 +38,10 @@ + # include <stdint.h> + #endif + ++#ifdef __NetBSD__ ++#include <sys/inttypes.h> ++#endif ++ + /*********************************************************************** + * usleep + */ |