Title: [139342] trunk/Tools
Revision
139342
Author
commit-qu...@webkit.org
Date
2013-01-10 11:11:51 -0800 (Thu, 10 Jan 2013)

Log Message

[jhbuild] Use the "configure" script to build glib
https://bugs.webkit.org/show_bug.cgi?id=106569

Patch by Raphael Kubo da Costa <raphael.kubo.da.co...@intel.com> on 2013-01-10
Reviewed by Martin Robinson.

So far both EFL and GTK have been using autogen.sh to build glib.
While that does work most of the time, it's not really needed since
we are downloading and building stable releases from tarballs.
Additionally, autogen.sh fails to work with automake 1.13 due to the
usage of some macros that have been removed (this has already been
fixed in glib master).

* efl/jhbuild.modules:
* gtk/jhbuild.modules:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (139341 => 139342)


--- trunk/Tools/ChangeLog	2013-01-10 18:44:48 UTC (rev 139341)
+++ trunk/Tools/ChangeLog	2013-01-10 19:11:51 UTC (rev 139342)
@@ -1,3 +1,20 @@
+2013-01-10  Raphael Kubo da Costa  <raphael.kubo.da.co...@intel.com>
+
+        [jhbuild] Use the "configure" script to build glib
+        https://bugs.webkit.org/show_bug.cgi?id=106569
+
+        Reviewed by Martin Robinson.
+
+        So far both EFL and GTK have been using autogen.sh to build glib.
+        While that does work most of the time, it's not really needed since
+        we are downloading and building stable releases from tarballs.
+        Additionally, autogen.sh fails to work with automake 1.13 due to the
+        usage of some macros that have been removed (this has already been
+        fixed in glib master).
+
+        * efl/jhbuild.modules:
+        * gtk/jhbuild.modules:
+
 2013-01-10  Tim 'mithro' Ansell  <mit...@mithis.com>
 
         Changing tests to be consistent and use self.scm rather then recreating the scm object.

Modified: trunk/Tools/efl/jhbuild.modules (139341 => 139342)


--- trunk/Tools/efl/jhbuild.modules	2013-01-10 18:44:48 UTC (rev 139341)
+++ trunk/Tools/efl/jhbuild.modules	2013-01-10 19:11:51 UTC (rev 139342)
@@ -120,6 +120,7 @@
   </autotools>
 
   <autotools id="glib"
+             autogen-sh="configure"
              autogenargs="--disable-dtrace">
     <dependencies>
       <dep package="libffi"/>

Modified: trunk/Tools/gtk/jhbuild.modules (139341 => 139342)


--- trunk/Tools/gtk/jhbuild.modules	2013-01-10 18:44:48 UTC (rev 139341)
+++ trunk/Tools/gtk/jhbuild.modules	2013-01-10 19:11:51 UTC (rev 139342)
@@ -146,6 +146,7 @@
   </autotools>
 
   <autotools id="glib"
+             autogen-sh="configure"
              autogenargs="--disable-dtrace">
     <dependencies>
       <dep package="libffi"/>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to