diff options
author | 2006-04-14 23:31:23 +0000 | |
---|---|---|
committer | 2006-04-14 23:31:23 +0000 | |
commit | e6a576c25c26f29a09279e22e583c9690eb22f63 (patch) | |
tree | a95a9b61e13d37b1f7521998f5355518e5370a0b /app-emulation/wine/files | |
parent | Marked stable on x86 (diff) | |
download | gentoo-2-e6a576c25c26f29a09279e22e583c9690eb22f63.tar.gz gentoo-2-e6a576c25c26f29a09279e22e583c9690eb22f63.tar.bz2 gentoo-2-e6a576c25c26f29a09279e22e583c9690eb22f63.zip |
Grab patch from upstream for amd64 build fix #129557 by Andrew Dorney.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'app-emulation/wine/files')
-rw-r--r-- | app-emulation/wine/files/wine-0.9.11-winegcc-short-libnames.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-emulation/wine/files/wine-0.9.11-winegcc-short-libnames.patch b/app-emulation/wine/files/wine-0.9.11-winegcc-short-libnames.patch new file mode 100644 index 000000000000..290264925bbd --- /dev/null +++ b/app-emulation/wine/files/wine-0.9.11-winegcc-short-libnames.patch @@ -0,0 +1,33 @@ +2006-04-04 Alexandre Julliard <julliard@winehq.org> + + * tools/winegcc/winegcc.c: + winegcc: Don't use the library full name for .so libs. + +Index: tools/winegcc/winegcc.c +=================================================================== +RCS file: /home/wine/wine/tools/winegcc/winegcc.c,v +retrieving revision 1.50 +retrieving revision 1.51 +diff -u -p -r1.50 -r1.51 +--- tools/winegcc/winegcc.c 16 Mar 2006 20:41:40 -0000 1.50 ++++ tools/winegcc/winegcc.c 4 Apr 2006 21:16:14 -0000 1.51 +@@ -401,8 +401,6 @@ static void add_library( strarray *lib_d + } + break; + case file_so: +- strarray_add(files, strmake("-s%s", fullname)); +- break; + default: + /* keep it anyway, the linker may know what to do with it */ + strarray_add(files, strmake("-l%s", library)); +@@ -628,9 +626,9 @@ static void build(struct options* opts) + switch(files->base[j][1]) + { + case 'l': ++ case 's': + strarray_add(link_args, strmake("-l%s", name)); + break; +- case 's': + case 'a': + case 'o': + strarray_add(link_args, name); |