summaryrefslogtreecommitdiff
path: root/emulators/wine-devel/files
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/wine-devel/files')
-rw-r--r--emulators/wine-devel/files/patch-partial-reservation27
-rw-r--r--emulators/wine-devel/files/pkg-message.in13
2 files changed, 0 insertions, 40 deletions
diff --git a/emulators/wine-devel/files/patch-partial-reservation b/emulators/wine-devel/files/patch-partial-reservation
deleted file mode 100644
index af9400870483..000000000000
--- a/emulators/wine-devel/files/patch-partial-reservation
+++ /dev/null
@@ -1,27 +0,0 @@
-diff --git libs/wine/mmap.c libs/wine/mmap.c
-index d107fc7..a694e4f 100644
---- libs/wine/mmap.c
-+++ libs/wine/mmap.c
-@@ -344,9 +344,13 @@ void mmap_init(void)
- struct reserved_area *area;
- struct list *ptr;
- #ifdef __i386__
-+ char *user_space_limit = (char *)0x7ffe0000;
-+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
-+ reserve_malloc_space( 8 * 1024 * 1024 );
-+ reserve_area( user_space_limit, (char *)0x82000000 );
-+#else
- char stack;
- char * const stack_ptr = &stack;
-- char *user_space_limit = (char *)0x7ffe0000;
-
- reserve_malloc_space( 8 * 1024 * 1024 );
-
-@@ -377,6 +381,7 @@ void mmap_init(void)
- reserve_area( base, end );
- }
- else reserve_area( user_space_limit, 0 );
-+#endif
- #endif /* __i386__ */
-
- /* reserve the DOS area if not already done */
diff --git a/emulators/wine-devel/files/pkg-message.in b/emulators/wine-devel/files/pkg-message.in
deleted file mode 100644
index e34fa1dcadab..000000000000
--- a/emulators/wine-devel/files/pkg-message.in
+++ /dev/null
@@ -1,13 +0,0 @@
-Wine requires FreeBSD 6.3 or above; FreeBSD 7.0 or later is strongly
-recommended. For FreeBSD 6 you may want to consider the patch(es)
-provided at <http://wiki.freebsd.org/Wine>.
-
-Some ZFS tuning guides recommend setting KVA_PAGES=512 in your kernel
-configuration. This is incompatible with Wine. The maximum possible
-is KVA_PAGES=500, which should still be enough for ZFS.
-
-The port also installs some of Wine's documentation which describes
-additional programs that are not in the manual pages under
- %%PREFIX%%/share/doc/wine
-There is more in the source tree but the others are only useful in
-conjunction with the rest of the source tree.