http://bugs.winehq.com/show_bug.cgi?id=950
Summary: configure incorrectly defines __ASM_FUNC Product: Wine Version: 20020804 Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-misc AssignedTo: wine-bugs@winehq.com ReportedBy: taviso@sdf.lonestar.org
i recently tried to upgrade from wine-20020710 to wine-20020804, however it failed to build with these error messsages http://taviso.decsystem.org/wine , i made some diffs of all the #include's and compared them and noticed that __ASM_FUNC was defined like this:
#define __ASM_FUNC(name) ".def " __ASM_NAME(name) "; .scl 2; .type 32; .endef"
this #define was generated by configure and put in include/config.h, so i redefined it like this :
#define __ASM_FUNC(name) ".type " __ASM_NAME(name) ",@function"
and wine builds correctly. some details of my system:
taviso@darkstar:~$ uname -a Linux darkstar 2.4.19 #1 Sat Aug 3 10:33:21 BST 2002 i686 unknown taviso@darkstar:~$ gcc -v Reading specs from /usr/lib/gcc-lib/i386-slackware-linux/2.95.3/specs gcc version 2.95.3 20010315 (release) taviso@darkstar:~$ cat /etc/slackware-version Slackware 8.1
heres the configure log: http://taviso.decsystem.org/config.log.failed
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=950. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.