Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
Summary: glib cannot be found while cross compiling
https://bugzilla.redhat.com/show_bug.cgi?id=513824
Summary: glib cannot be found while cross compiling Product: Fedora Version: 11 Platform: All OS/Version: Linux Status: NEW Severity: medium Priority: low Component: mingw32-glib2 AssignedTo: rjones@redhat.com ReportedBy: pbonzini@redhat.com QAContact: extras-qa@fedoraproject.org CC: lfarkas@lfarkas.org, t.sailer@alumni.ethz.ch, berrange@redhat.com, rjones@redhat.com, fedora-mingw@lists.fedoraproject.org Depends on: 513819 Classification: Fedora Target Release: ---
Description of problem: The glib configure macros will not detect glib correctly. Part of the problem is that the \mingw paths are not available inside Wine.
The part this bug is concerned about, is that the glib macros require a working touch binary.
This can be as simple as:
#include <unistd.h> #include <fcntl.h> #include <stdio.h> #include <errno.h> #include <utime.h>
int main(int argc, char **argv) { int i; struct utimbuf u; u.actime = time (NULL); u.modtime = time (NULL);
for (i = 1; i < argc; i++) { int fd = open (argv[i], O_WRONLY | O_EXCL | O_CREAT, 0600); if (fd == -1) { if ((errno == EACCES || errno == EISDIR) && utime (argv[i], &u) == -1) perror ("touch"); } else close (fd); } }
and (if bug 513819 is fixed, which is a prerequisite anyway) it should be placed in c:\windows so that a more complete mingw installation including GNU touch would override it.
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
Paolo Bonzini pbonzini@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Depends on| |513825
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
Paolo Bonzini pbonzini@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|glib cannot be found while |mingw glib rejected when |cross compiling |Wine is installed
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
--- Comment #1 from Richard W.M. Jones rjones@redhat.com 2009-07-27 04:51:06 EDT --- (In reply to comment #0)
The part this bug is concerned about, is that the glib macros require a working touch binary.
The glib macros should use the native /usr/bin/touch.
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
Bug 513824 depends on bug 513825, which changed state.
Bug 513825 Summary: missing i686-pc-mingw32-pkg-config https://bugzilla.redhat.com/show_bug.cgi?id=513825
What |Old Value |New Value ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |RAWHIDE
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
Bug 513824 depends on bug 513819, which changed state.
Bug 513819 Summary: mingw directory not visible as a wine DOS path https://bugzilla.redhat.com/show_bug.cgi?id=513819
What |Old Value |New Value ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |NOTABUG
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
--- Comment #2 from Bug Zapper fedora-triage-list@redhat.com 2010-04-28 05:20:57 EDT ---
This message is a reminder that Fedora 11 is nearing its end of life. Approximately 30 (thirty) days from now Fedora will stop maintaining and issuing updates for Fedora 11. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At that time this bug will be closed as WONTFIX if it remains open with a Fedora 'version' of '11'.
Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, simply change the 'version' to a later Fedora version prior to Fedora 11's end of life.
Bug Reporter: Thank you for reporting this issue and we are sorry that we may not be able to fix it before Fedora 11 is end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora please change the 'version' of this bug to the applicable version. If you are unable to change the version, please add a comment here and someone will do it for you.
Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete.
The process we are following is described here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
Richard W.M. Jones rjones@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |DEFERRED
--- Comment #3 from Richard W.M. Jones rjones@redhat.com 2010-06-08 09:20:02 EDT --- Closing because this bug was filed against F11. If it still happens in Rawhide, please reopen.
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=513824
Paolo Bonzini pbonzini@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Resolution|DEFERRED |UPSTREAM
--- Comment #4 from Paolo Bonzini pbonzini@redhat.com 2010-06-08 09:36:17 EDT --- It was fixed upstream, that's fair enough.