[Webkit-unassigned] [Bug 66792] New: [Qt] Build failure under FreeBSD

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 23 11:51:01 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=66792

           Summary: [Qt] Build failure under FreeBSD
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P3
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: freebsd at chillt.de


When building the Qt port, qmake is used to generate Makefiles. These files use GNU syntax and must be consumed by GNU make. Under FreeBSD, this requires calling "gmake" instead of "make". The following trivial patch fixes the build under FreeBSD. Since it breaks the build on other platforms without a "gmake" command, the change should be wrapped into a conditional so that it is applied under FreeBSD only:

Index: Tools/Scripts/webkitdirs.pm
===================================================================
--- Tools/Scripts/webkitdirs.pm (revision 93616)
+++ Tools/Scripts/webkitdirs.pm (working copy)
@@ -1415,7 +1415,7 @@
         return "nmake";
     }

-    return "make";
+    return "gmake";
 }

 sub autotoolsFlag($$)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list