Changeset 145859 in webkit


Ignore:
Timestamp:
Mar 14, 2013 5:10:01 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Build: Remove XSLT option and depend hard on XSLT.
You will now not be able to give --disable-xslt or --enable-xslt
because it is not optional anymore.
https://bugs.webkit.org/show_bug.cgi?id=112368

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

  • Source/autotools/FindDependencies.m4:

Always check for libxslt

  • Source/autotools/PrintBuildConfiguration.m4:

Removed printing out the value of XSLT

  • Source/autotools/ReadCommandLineArguments.m4:

Removed reading XSLT options

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r145841 r145859  
     12013-03-14  Tobias Mueller  <tobiasmue@gnome.org>
     2
     3        Build: Remove XSLT option and depend hard on XSLT.
     4        You will now not be able to give --disable-xslt or --enable-xslt
     5        because it is not optional anymore.
     6        https://bugs.webkit.org/show_bug.cgi?id=112368
     7
     8        Reviewed by Martin Robinson.
     9
     10        * Source/autotools/FindDependencies.m4:
     11            Always check for libxslt
     12       
     13        * Source/autotools/PrintBuildConfiguration.m4:
     14            Removed printing out the value of XSLT
     15
     16        * Source/autotools/ReadCommandLineArguments.m4:
     17            Removed reading XSLT options
     18
    1192013-03-14  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
    220
  • trunk/Source/autotools/FindDependencies.m4

    r145427 r145859  
    389389fi
    390390
    391 # Check if libxslt is available.
    392 if test "$enable_xslt" = "yes"; then
    393     PKG_CHECK_MODULES([LIBXSLT],[libxslt >= libxslt_required_version])
    394     AC_SUBST([LIBXSLT_CFLAGS])
    395     AC_SUBST([LIBXSLT_LIBS])
    396 fi
     391PKG_CHECK_MODULES([LIBXSLT],[libxslt >= libxslt_required_version])
     392AC_SUBST([LIBXSLT_CFLAGS])
     393AC_SUBST([LIBXSLT_LIBS])
    397394
    398395# Check if geoclue is available.
  • trunk/Source/autotools/PrintBuildConfiguration.m4

    r145199 r145859  
    2727 Web Audio support                                        : $enable_web_audio
    2828 WebGL                                                    : $enable_webgl
    29  XSLT support                                             : $enable_xslt
    3029
    3130
  • trunk/Source/autotools/ReadCommandLineArguments.m4

    r145199 r145859  
    8989    [enable_video="yes"])
    9090AC_MSG_RESULT([$enable_video])
    91 
    92 AC_MSG_CHECKING([whether to enable XSLT support])
    93 AC_ARG_ENABLE(xslt,
    94     AC_HELP_STRING([--enable-xslt], [enable support for XSLT [default=yes]]),
    95     [],
    96     [enable_xslt="yes"])
    97 AC_MSG_RESULT([$enable_xslt])
    9891
    9992AC_MSG_CHECKING([whether to enable geolocation support])
Note: See TracChangeset for help on using the changeset viewer.