diff options
author | gerald <gerald@FreeBSD.org> | 2004-01-29 06:29:36 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2004-01-29 06:29:36 +0800 |
commit | 6e89d8197885269fc8a3cdb4f583f2748e9846e5 (patch) | |
tree | 2715036b1705e1f0209aca9e65d9adcab48bd705 /emulators | |
parent | f852a4cf42034386b678728e4f113517d996e3f8 (diff) | |
download | freebsd-ports-gnome-6e89d8197885269fc8a3cdb4f583f2748e9846e5.tar.gz freebsd-ports-gnome-6e89d8197885269fc8a3cdb4f583f2748e9846e5.tar.zst freebsd-ports-gnome-6e89d8197885269fc8a3cdb4f583f2748e9846e5.zip |
Revert an upstream change (which in turn reverted a fix which happened to
cause higher memory consumption). This should avoid errors of the following
kind:
err:virtual:map_image Standard load address for a Win32 program
(0x00400000) not available
Bump PORTREVISION.
Problem reported by: pav, Benjamin Lutz <benlutz@datacomm.ch>
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/wine-devel/Makefile | 1 | ||||
-rw-r--r-- | emulators/wine-devel/files/patch-loader::main.c | 17 | ||||
-rw-r--r-- | emulators/wine/Makefile | 1 | ||||
-rw-r--r-- | emulators/wine/files/patch-loader::main.c | 17 |
4 files changed, 36 insertions, 0 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index 7b6f7e62291e..a32743501f2c 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -8,6 +8,7 @@ PORTNAME= wine PORTVERSION= 20040121 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= ALPHA/wine/development diff --git a/emulators/wine-devel/files/patch-loader::main.c b/emulators/wine-devel/files/patch-loader::main.c new file mode 100644 index 000000000000..b7a60402ad5b --- /dev/null +++ b/emulators/wine-devel/files/patch-loader::main.c @@ -0,0 +1,17 @@ +Index: loader/main.c +=================================================================== +RCS file: /home/wine/wine/loader/main.c,v +retrieving revision 1.90 +retrieving revision 1.89 +diff -u -3 -p -r1.90 -r1.89 +--- loader/main.c 20 Jan 2004 00:28:01 -0000 1.90 ++++ loader/main.c 22 Nov 2003 00:08:26 -0000 1.89 +@@ -29,7 +29,7 @@ int main( int argc, char *argv[] ) + { + char error[1024]; + +-#if 0 ++#ifdef __i386__ + static char pe_load[256*1024*1024] __attribute__((aligned(4096))); + wine_set_pe_load_area( pe_load, sizeof(pe_load) ); + #endif diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile index 7b6f7e62291e..a32743501f2c 100644 --- a/emulators/wine/Makefile +++ b/emulators/wine/Makefile @@ -8,6 +8,7 @@ PORTNAME= wine PORTVERSION= 20040121 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= ALPHA/wine/development diff --git a/emulators/wine/files/patch-loader::main.c b/emulators/wine/files/patch-loader::main.c new file mode 100644 index 000000000000..b7a60402ad5b --- /dev/null +++ b/emulators/wine/files/patch-loader::main.c @@ -0,0 +1,17 @@ +Index: loader/main.c +=================================================================== +RCS file: /home/wine/wine/loader/main.c,v +retrieving revision 1.90 +retrieving revision 1.89 +diff -u -3 -p -r1.90 -r1.89 +--- loader/main.c 20 Jan 2004 00:28:01 -0000 1.90 ++++ loader/main.c 22 Nov 2003 00:08:26 -0000 1.89 +@@ -29,7 +29,7 @@ int main( int argc, char *argv[] ) + { + char error[1024]; + +-#if 0 ++#ifdef __i386__ + static char pe_load[256*1024*1024] __attribute__((aligned(4096))); + wine_set_pe_load_area( pe_load, sizeof(pe_load) ); + #endif |