diff options
author | junyoung <junyoung@pkgsrc.org> | 2002-07-29 09:16:37 +0000 |
---|---|---|
committer | junyoung <junyoung@pkgsrc.org> | 2002-07-29 09:16:37 +0000 |
commit | ff1fda2fd0649f9c5b6915150ef2cfee736679d1 (patch) | |
tree | 21bf1fc0020096bf3a4d0977b0d6add66414ddc4 /emulators/wine/patches | |
parent | 9f383b07f4b3bf26144f069123643fc77229645c (diff) | |
download | pkgsrc-ff1fda2fd0649f9c5b6915150ef2cfee736679d1.tar.gz |
Update to 20020710 snapshot. Highlights since 20020411 snapshot include:
WHAT'S NEW with Wine-20020509:
- More dll separation work.
- Many async I/O improvements.
- Still more unit tests.
- A lot less multimedia code.
- Many portability fixes, esp. for ReactOS.
- Lots of bug fixes.
WHAT'S NEW with Wine-20020605:
- Better Mingw support, including cross-compilation on Linux.
- Still more dll separation work.
- Winelib applications now get loaded much like builtin dlls.
- Some command-line options replaced by config entries.
- Multimedia improvements, including an MP3 decoder.
- Massive whitespace cleanup.
- New Winelib file manager.
- Lots of bug fixes.
WHAT'S NEW with Wine-20020710:
- DirectSound 8 and DirectInput 8 support.
- Many OLE improvements.
- Support for font downloading in Postscript driver.
- ALSA sound driver.
- More portability fixes, particularly for Sparc.
- Lots of bug fixes.
Diffstat (limited to 'emulators/wine/patches')
-rw-r--r-- | emulators/wine/patches/patch-ab | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/emulators/wine/patches/patch-ab b/emulators/wine/patches/patch-ab new file mode 100644 index 00000000000..efe157491f9 --- /dev/null +++ b/emulators/wine/patches/patch-ab @@ -0,0 +1,20 @@ +$NetBSD: patch-ab,v 1.10 2002/07/29 09:16:39 junyoung Exp $ + +Index: memory/global.c +=================================================================== +RCS file: /home/wine/wine/memory/global.c,v +retrieving revision 1.66 +retrieving revision 1.67 +diff -u -r1.66 -r1.67 +--- memory/global.c 3 Jul 2002 21:10:44 -0000 1.66 ++++ memory/global.c 25 Jul 2002 23:57:34 -0000 1.67 +@@ -28,6 +28,9 @@ + #include <stdio.h> + #include <unistd.h> + #include <string.h> ++#ifdef HAVE_SYS_PARAM_H ++#include <sys/param.h> ++#endif + #ifdef HAVE_SYS_SYSCTL_H + #include <sys/sysctl.h> + #endif |