http://bugs.winehq.org/show_bug.cgi?id=31492
Bug #: 31492 Summary: wine build failed: command execution failure Product: Wine Version: unspecified Platform: x86 OS/Version: Mac OS X Status: UNCONFIRMED Severity: major Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: nicholas.lutomski@gmail.com Classification: Unclassified
{{{ nicholas-lutomskis-computer:~ Nick$ sudo port install wine ---> p5-xml-parser is replaced by p5.12-xml-parser ---> Computing dependencies for p5.12-xml-parser ---> Cleaning p5.12-xml-parser ---> Computing dependencies for wine ---> Building wine Error: org.macports.build for port wine returned: command execution failed Please see the log file for port wine for details:
/opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_ports_x11_wine/wine/main.log To report a bug, follow the instructions in the guide: http://guide.macports.org/#project.tickets Error: Processing of port wine failed }}}
http://bugs.winehq.org/show_bug.cgi?id=31492
--- Comment #1 from nicholas.lutomski@gmail.com 2012-08-18 12:59:58 CDT --- Created attachment 41400 --> http://bugs.winehq.org/attachment.cgi?id=41400 Log
http://bugs.winehq.org/show_bug.cgi?id=31492
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Attachment #41400|application/octet-stream |text/plain mime type| |
http://bugs.winehq.org/show_bug.cgi?id=31492
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |00cpxxx@gmail.com
--- Comment #2 from Bruno Jesus 00cpxxx@gmail.com 2012-08-18 13:48:17 CDT --- This bug may be invalid. Did you try to open a ticket in macports as instructions suggest?
To report a bug, follow the instructions in the guide: http://guide.macports.org/#project.tickets
http://bugs.winehq.org/show_bug.cgi?id=31492
--- Comment #3 from nicholas.lutomski@gmail.com 2012-08-18 14:04:46 CDT --- (In reply to comment #2)
This bug may be invalid. Did you try to open a ticket in macports as instructions suggest?
To report a bug, follow the instructions in the guide: http://guide.macports.org/#project.tickets
Yes, I have opened a ticket in macports but have not yet received a reply.
http://bugs.winehq.org/show_bug.cgi?id=31492
--- Comment #4 from Rico kgbricola@web.de 2012-08-18 14:22:18 CDT --- This one http://trac.macports.org/ticket/35733 ?
... :debug:main OS darwin/8.11.1 (Mac OS X 10.4) arch i386 ... :info:build /usr/libexec/gcc/i686-apple-darwin8/4.0.1/ld: Undefined symbols: :info:build _FSPathMoveObjectToTrashSync ...
As of https://developer.apple.com/library/mac/documentation/Carbon/Reference/File_... FSPathMoveObjectToTrashSync is only avalable on OS X v10.5 and later. You are using version 10.4, is that correct? The wine readme says "Mac OS X 10.4 or later" is needed. So maybe no one tried such an old system, yet?
I'd also say it's invalid, because it's not plain wine. But there might be a bug in the configure script which might detects a wrong version of the header file and makes a wrong assumption. The functionality was added in cd454fdc2ed6c4a8b432dd4617fb61949c786087. Could you check with plain wine if that is a regression and if that might be the faulty commit?
http://bugs.winehq.org/show_bug.cgi?id=31492
Bruno Jesus 00cpxxx@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |ken@codeweavers.com
--- Comment #5 from Bruno Jesus 00cpxxx@gmail.com 2012-08-18 14:36:54 CDT --- Ken, can you take a look, please?
http://source.winehq.org/git/wine.git/commitdiff/cd454fdc2ed6c4a8b432dd4617f...
http://bugs.winehq.org/show_bug.cgi?id=31492
--- Comment #6 from Ken Thomases ken@codeweavers.com 2012-08-18 15:00:05 CDT --- It is known that that API is not compatible with 10.4. Wine abandoned compatibility with 10.4 and has required 10.5 for some time. I guess the README needs to be updated.
If you want to hack around the issue, you can modify dlls/shell32/trash.c, changing the lines reading:
#ifdef HAVE_CORESERVICES_CORESERVICES_H
to read:
#if defined(HAVE_CORESERVICES_CORESERVICES_H) && defined(MAC_OS_X_VERSION_10_5) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
It's a simple enough change that it may be accepted as a patch, but I don't know if we'll bother with patches for 10.4 compatibility.
http://bugs.winehq.org/show_bug.cgi?id=31492
--- Comment #7 from nicholas.lutomski@gmail.com 2012-08-18 15:28:39 CDT --- Thank you all for your quick responses. Unfortunately, I think I am in over my head and hacking around the issue is far beyond my understanding of this stuff. I have never attempted to do anything of this sort up until the other day. I would require a walk through and that is a bit much to ask.
I apologize if this ticket doesn't belong here as well.
Take care.
http://bugs.winehq.org/show_bug.cgi?id=31492
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |WONTFIX
--- Comment #8 from Austin English austinenglish@gmail.com 2012-08-21 14:03:27 CDT --- WONTFIX.
http://bugs.winehq.org/show_bug.cgi?id=31492
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #9 from Austin English austinenglish@gmail.com 2012-08-21 17:51:32 CDT --- Closing.
http://bugs.winehq.org/show_bug.cgi?id=31492
--- Comment #10 from Austin English austinenglish@gmail.com 2012-08-22 17:24:57 CDT --- (In reply to comment #6)
It is known that that API is not compatible with 10.4. Wine abandoned compatibility with 10.4 and has required 10.5 for some time. I guess the README needs to be updated.
http://source.winehq.org/git/wine.git/commitdiff/d71e94d109c81918ca914100829...