Changeset 40790 in webkit


Ignore:
Timestamp:
Feb 9, 2009 12:41:14 PM (15 years ago)
Author:
zecke@webkit.org
Message:

2009-02-09 Calvin Walton <calvin.walton@gmail.com>

Reviewed by Holger Freyther.

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

[Gtk] Fix build with recent autotools

Current versions of automake/libtool don't assume you want C++ enabled
by default any more, so explicitly check for a C++ compiler.

  • configure.ac: Add AC_PROG_CXX macro
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r40489 r40790  
     12009-02-09  Calvin Walton  <calvin.walton@gmail.com>
     2
     3        Reviewed by Holger Freyther.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=23823
     6
     7        [Gtk] Fix build with recent autotools
     8
     9        Current versions of automake/libtool don't assume you want C++ enabled
     10        by default any more, so explicitly check for a C++ compiler.
     11
     12        * configure.ac: Add AC_PROG_CXX macro
     13
    1142009-02-02  Christian Dywan  <christian@twotoasts.de>
    215
  • trunk/configure.ac

    r40489 r40790  
    2727LIBWEBKITGTK_VERSION=1:0:0
    2828AC_SUBST([LIBWEBKITGTK_VERSION])
     29
     30# Recent libtool+automake don't assume you want C++, explicitly enable it
     31AC_PROG_CXX
    2932
    3033AM_INIT_AUTOMAKE([foreign subdir-objects tar-ustar])
Note: See TracChangeset for help on using the changeset viewer.