diff options
Diffstat (limited to 'emulators/wine-devel/files')
-rw-r--r-- | emulators/wine-devel/files/patch-dlls-ntdll | 29 | ||||
-rw-r--r-- | emulators/wine-devel/files/patch-gb | 12 | ||||
-rw-r--r-- | emulators/wine-devel/files/patch-program::Makefile.in | 26 | ||||
-rw-r--r-- | emulators/wine-devel/files/patch-tools | 27 | ||||
-rw-r--r-- | emulators/wine-devel/files/wine.sh | 15 |
5 files changed, 0 insertions, 109 deletions
diff --git a/emulators/wine-devel/files/patch-dlls-ntdll b/emulators/wine-devel/files/patch-dlls-ntdll deleted file mode 100644 index 6ee56acae645..000000000000 --- a/emulators/wine-devel/files/patch-dlls-ntdll +++ /dev/null @@ -1,29 +0,0 @@ -Index: dlls/ntdll/virtual.c -=================================================================== -RCS file: /home/wine/wine/dlls/ntdll/virtual.c,v -retrieving revision 1.41 -diff -u -3 -p -r1.41 virtual.c ---- dlls/ntdll/virtual.c 11 Oct 2004 20:59:06 -0000 1.41 -+++ dlls/ntdll/virtual.c 3 Dec 2004 04:06:42 -0000 -@@ -119,6 +119,12 @@ static CRITICAL_SECTION csVirtual = { &c - /* Note: these are Windows limits, you cannot change them. */ - # define ADDRESS_SPACE_LIMIT ((void *)0xc0000000) /* top of the total available address space */ - # define USER_SPACE_LIMIT ((void *)0x80000000) /* top of the user address space */ -+# ifdef __FreeBSD__ -+# define LOW_SPACE_LIMIT ((void *)0x110000) /* lower address space limit */ -+# else -+# define LOW_SPACE_LIMIT NULL -+# endif -+ - #else - static UINT page_shift; - static UINT page_mask; -@@ -600,7 +606,7 @@ static NTSTATUS map_view( struct file_vi - - for (;;) - { -- if ((ptr = wine_anon_mmap( NULL, view_size, VIRTUAL_GetUnixProt(vprot), 0 )) == (void *)-1) -+ if ((ptr = wine_anon_mmap( LOW_SPACE_LIMIT, view_size, VIRTUAL_GetUnixProt(vprot), 0 )) == (void *)-1) - { - if (errno == ENOMEM) return STATUS_NO_MEMORY; - return STATUS_INVALID_PARAMETER; diff --git a/emulators/wine-devel/files/patch-gb b/emulators/wine-devel/files/patch-gb deleted file mode 100644 index 428621682509..000000000000 --- a/emulators/wine-devel/files/patch-gb +++ /dev/null @@ -1,12 +0,0 @@ ---- Makefile.in.orig Wed Apr 9 08:10:49 2003 -+++ Makefile.in Wed Apr 9 08:14:06 2003 -@@ -82,8 +82,7 @@ - install-dev:: $(INSTALLDEVSUBDIRS:%=%/__install__) $(INSTALLBOTHSUBDIRS:%=%/__install-dev__) install-aclocal - - install:: install-lib install-dev install-aclocal -- -$(LDCONFIG) -- @if test -n "`LANG=C $(LDD) $(bindir)/wine|grep not.found`"; \ -+ @if false ; \ - then \ - echo "*************************************************" ; \ - echo "*************************************************" ; \ diff --git a/emulators/wine-devel/files/patch-program::Makefile.in b/emulators/wine-devel/files/patch-program::Makefile.in deleted file mode 100644 index 2ba5e0de2ca2..000000000000 --- a/emulators/wine-devel/files/patch-program::Makefile.in +++ /dev/null @@ -1,26 +0,0 @@ ---- programs/Makefile.in.orig Sun Dec 14 01:20:59 2003 -+++ programs/Makefile.in Sun Dec 14 01:21:45 2003 -@@ -29,7 +29,6 @@ SUBDIRS = \ - winemenubuilder \ - winemine \ - winepath \ -- winetest \ - winevdm \ - winhelp \ - winver -@@ -57,7 +56,6 @@ INSTALLSUBDIRS = \ - winemenubuilder \ - winemine \ - winepath \ -- winetest \ - winevdm \ - winhelp \ - winver -@@ -106,7 +104,6 @@ SYMLINKS = \ - winemenubuilder.exe$(DLLEXT) \ - winemine.exe$(DLLEXT) \ - winepath.exe$(DLLEXT) \ -- winetest.exe$(DLLEXT) \ - winevdm.exe$(DLLEXT) \ - winhelp.exe$(DLLEXT) \ - winver.exe$(DLLEXT) diff --git a/emulators/wine-devel/files/patch-tools b/emulators/wine-devel/files/patch-tools deleted file mode 100644 index a6d6085cc0ac..000000000000 --- a/emulators/wine-devel/files/patch-tools +++ /dev/null @@ -1,27 +0,0 @@ -Index: tools/makedep.c -=================================================================== -RCS file: /home/wine/wine/tools/makedep.c,v -retrieving revision 1.17 -diff -u -3 -p -r1.17 makedep.c ---- makedep.c 20 Jun 2003 21:31:13 -0000 1.17 -+++ makedep.c 23 Feb 2004 22:36:23 -0000 -@@ -67,7 +67,8 @@ static const char Usage[] = - " -Idir Search for include files in directory 'dir'\n" - " -Cdir Search for source files in directory 'dir'\n" - " -fxxx Store output in file 'xxx' (default: Makefile)\n" -- " -sxxx Use 'xxx' as separator (default: \"### Dependencies\")\n"; -+ " -sxxx Use 'xxx' as separator (default: \"### Dependencies\")\n" -+ " -Dxxx This is a no-op, to work around bugs in other tools\n"; - - - /******************************************************************* -@@ -503,6 +504,9 @@ static void parse_option( const char *op - case 'C': - if (opt[2]) SrcDir = opt + 2; - else SrcDir = NULL; -+ break; -+ case 'D': -+ /* Simply ignore -D... options. */ - break; - case 'f': - if (opt[2]) OutputFileName = opt + 2; diff --git a/emulators/wine-devel/files/wine.sh b/emulators/wine-devel/files/wine.sh deleted file mode 100644 index fe67ceb5d4e2..000000000000 --- a/emulators/wine-devel/files/wine.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -case "$1" in - start) - /sbin/ldconfig -m %%PREFIX%%/lib/wine - ;; - stop) - ;; - *) - echo "" - echo "Usage: `basename $0` { start | stop }" - echo "" - exit 64 - ;; -esac |