ports/emulators/wine-devel/files/patch-partial-reservation
Gerald Pfeifer 2ee985ee97 Update to Wine 1.3.10. [1][2] This includes the following changes:
- Icons in the "open with" menus.
 - Man pages for all installed binaries.
 - Support for schemas in MSXML.
 - Many installer fixes.
 - Beginnings of support for ActiveX in built-in browser.
 - More work on ActiveX support.
 - Icons on Internet shortcut menu entries.
 - Standardization of code implementing COM interfaces.
 - New scheme for auto-generated DLL registrations.
 - OpenCL library wrapper.
 - Support for notification balloons in system tray.
 - Obsolete AudioIO sound driver removed.
 - Various MSI fixes.
 - Translation updates.
 - Various bug fixes.

Lots of new man pages.

Also, remove references to FreeBSD 6 from pkg-message. [2]

PR:		153434
Submitted by:	Rusty Nejdl <rnejdl@ringofsaturn.com> [1]
		Alex Kozlov <spam@rm-rf.kiev.ua> [2]
2010-12-31 08:15:15 +00:00

13 lines
400 B
Text

--- libs/wine/mmap.c
+++ libs/wine/mmap.c
@@ -380,6 +380,9 @@
reserve_area( base, end );
}
else reserve_area( user_space_limit, 0 );
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+ wine_mmap_remove_reserved_area( (char *)0x82000000, 0xffffffff - 0x82000000, 1 );
+#endif
/* reserve the DOS area if not already done */
ptr = list_head( &reserved_areas );