mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 13:29:24 -04:00
- 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]
13 lines
400 B
Text
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 );
|