http://bugs.winehq.com/show_bug.cgi?id=136
Summary: typo in the configure Product: Wine Version: unspecified Platform: All OS/Version: All Status: VERIFIED Severity: normal Priority: P1 Component: wine-binary AssignedTo: wine-bugs@winehq.com ReportedBy: oik@rocketmail.com
Looks like the configure script is missing a '-' for the linker options passed from gcc:
srp@box$ cvs diff configure Index: configure =================================================================== RCS file: /home/wine/wine/configure,v retrieving revision 1.174 diff -u -r1.174 configure --- configure 2000/12/12 00:38:58 1.174 +++ configure 2000/12/12 23:39:06 @@ -4806,7 +4806,7 @@ echo "$ac_t""$ac_cv_c_dll_unixware" 1>&6 if test "$ac_cv_c_dll_unixware" = "yes" then - LDSHARED="$(CC) -Wl,-G $(SONAME:%=-Wl,h,$(libdir)/%)" + LDSHARED="$(CC) -Wl,-G $(SONAME:%=-Wl,-h,$(libdir)/%)" LDDLLFLAGS="-Wl,-B,symbolic" else echo $ac_n "checking "whether we can build a NetBSD dll"""... $ac_c" 1>&6 srp@box$ cvs diff configure.in Index: configure.in =================================================================== RCS file: /home/wine/wine/configure.in,v retrieving revision 1.174 diff -u -r1.174 configure.in --- configure.in 2000/12/12 00:38:58 1.174 +++ configure.in 2000/12/12 23:41:51 @@ -557,7 +557,7 @@ ]) if test "$ac_cv_c_dll_unixware" = "yes" then - LDSHARED="$(CC) -Wl,-G $(SONAME:%=-Wl,h,$(libdir)/%)" + LDSHARED="$(CC) -Wl,-G $(SONAME:%=-Wl,-h,$(libdir)/%)" LDDLLFLAGS="-Wl,-B,symbolic" else AC_CACHE_CHECK("whether we can build a NetBSD dll",
Should be -Wl,-h,... instead of -Wl,h
Was just building for fun so am being too lazy to get myself set up with ssh etc... Sorry.
Cheers
srp
------- Additional Comments From andi@rhlx01.fht-esslingen.de 2000-12-31 20:10 ------- Hmm, this has been fixed in the meantime somehow.
Thanks for mentioning it anyway.
------- Additional Comments From tony_lambregts@telusplanet.net 2002-07-22 13:57 ------- This is has been fixed for a long time. Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://bugs.winehq.com/show_bug.cgi?id=136. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.