Changeset 145427 in webkit


Ignore:
Timestamp:
Mar 11, 2013 4:39:05 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[Autotools] Set ENABLE_GTK_DOC to false if gtk-doc is not installed
https://bugs.webkit.org/show_bug.cgi?id=111980

Patch by Tobias Mueller <tobiasmue@gnome.org> on 2013-03-11
Reviewed by Martin Robinson.

WebKit did not configure if gtk-doc-am was not installed with the error:
Tools/GNUmakefile.am:419: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL

  • Source/autotools/FindDependencies.m4:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r145407 r145427  
     12013-03-11  Tobias Mueller  <tobiasmue@gnome.org>
     2
     3        [Autotools] Set ENABLE_GTK_DOC to false if gtk-doc is not installed
     4        https://bugs.webkit.org/show_bug.cgi?id=111980
     5       
     6        Reviewed by Martin Robinson.
     7
     8        WebKit did not configure if gtk-doc-am was not installed with the error:
     9        Tools/GNUmakefile.am:419: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
     10
     11        * Source/autotools/FindDependencies.m4:
     12
    1132013-03-11  Claudio Saavedra  <csaavedra@igalia.com>
    214
  • trunk/Source/autotools/FindDependencies.m4

    r143345 r145427  
    510510fi
    511511
     512m4_ifdef([GTK_DOC_CHECK], [
    512513GTK_DOC_CHECK([1.10])
     514],[
     515AM_CONDITIONAL([ENABLE_GTK_DOC], false)
     516])
Note: See TracChangeset for help on using the changeset viewer.