Title: [140440] trunk
Revision
140440
Author
[email protected]
Date
2013-01-22 10:52:52 -0800 (Tue, 22 Jan 2013)

Log Message

[GTK] Debug build failure on x86-64
https://bugs.webkit.org/show_bug.cgi?id=107400

Reviewed by Xan Lopez.

* configure.ac: use thin archives for convenience libraries, if AR_FLAGS was not
overriden through the environment variable.

Modified Paths

Diff

Modified: trunk/ChangeLog (140439 => 140440)


--- trunk/ChangeLog	2013-01-22 18:50:36 UTC (rev 140439)
+++ trunk/ChangeLog	2013-01-22 18:52:52 UTC (rev 140440)
@@ -1,3 +1,13 @@
+2013-01-22  Gustavo Noronha Silva  <[email protected]>
+
+        [GTK] Debug build failure on x86-64
+        https://bugs.webkit.org/show_bug.cgi?id=107400
+
+        Reviewed by Xan Lopez.
+
+        * configure.ac: use thin archives for convenience libraries, if AR_FLAGS was not
+        overriden through the environment variable.
+
 2013-01-22  Zan Dobersek  <[email protected]>
 
         [Autotools] Remove the Canvas Path configuration option

Modified: trunk/configure.ac (140439 => 140440)


--- trunk/configure.ac	2013-01-22 18:50:36 UTC (rev 140439)
+++ trunk/configure.ac	2013-01-22 18:52:52 UTC (rev 140440)
@@ -126,6 +126,10 @@
 AC_PROG_INSTALL
 AC_SYS_LARGEFILE
 
+if test -z "$AR_FLAGS"; then
+   AR_FLAGS="cruT"
+fi
+
 # Check whether a C++ was found (AC_PROG_CXX sets $CXX to "g++" even when it
 # doesn't exist)
 AC_LANG_PUSH([C++])
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to