Changeset 142158 in webkit


Ignore:
Timestamp:
Feb 7, 2013 11:31:52 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[Autotools] Remove uses of Automake FARSTREAM_(CFLAGS|LIBS) variables, USE_FARSTREAM conditional
https://bugs.webkit.org/show_bug.cgi?id=109198

Reviewed by Martin Robinson.

.:

  • GNUmakefile.am: The USE_FARSTREAM conditional is being removed while the WTF_USE_FARSTREAM

define is currently a no-op.

  • configure.ac: Don't set the Automake conditional as it's currently not needed due

to checking for Farstream dependency being removed in r142005.

Source/WebCore:

  • GNUmakefile.am: Remove FARSTREAM_CFLAGS variable, it's not set to anything.

Source/WebKit2:

  • GNUmakefile.am: Remove the FARSTREAM_(CFLAGS|LIBS) variables, they're

not set to anything.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r142143 r142158  
     12013-02-07  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [Autotools] Remove uses of Automake FARSTREAM_(CFLAGS|LIBS) variables, USE_FARSTREAM conditional
     4        https://bugs.webkit.org/show_bug.cgi?id=109198
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: The USE_FARSTREAM conditional is being removed while the WTF_USE_FARSTREAM
     9        define is currently a no-op.
     10        * configure.ac: Don't set the Automake conditional as it's currently not needed due
     11        to checking for Farstream dependency being removed in r142005.
     12
    1132013-02-07  Gavin Peters  <gavinp@chromium.org>
    214
  • trunk/GNUmakefile.am

    r139769 r142158  
    210210endif
    211211
    212 if USE_FARSTREAM
    213 global_cppflags += \
    214         -DWTF_USE_FARSTREAM=1
    215 endif
    216 
    217212if USE_ACCELERATED_COMPOSITING
    218213global_cppflags += \
  • trunk/Source/WebCore/ChangeLog

    r142155 r142158  
     12013-02-07  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [Autotools] Remove uses of Automake FARSTREAM_(CFLAGS|LIBS) variables, USE_FARSTREAM conditional
     4        https://bugs.webkit.org/show_bug.cgi?id=109198
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: Remove FARSTREAM_CFLAGS variable, it's not set to anything.
     9
    1102013-02-07   Vineet Chaudhary  <rgf748@motorola.com>
    211
  • trunk/Source/WebCore/GNUmakefile.am

    r142108 r142158  
    737737        $(COVERAGE_CFLAGS) \
    738738        $(ENCHANT_CFLAGS) \
    739         $(FARSTREAM_CFLAGS) \
    740739        $(FREETYPE_CFLAGS) \
    741740        $(GAIL_CFLAGS) \
  • trunk/Source/WebKit2/ChangeLog

    r142157 r142158  
     12013-02-07  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [Autotools] Remove uses of Automake FARSTREAM_(CFLAGS|LIBS) variables, USE_FARSTREAM conditional
     4        https://bugs.webkit.org/show_bug.cgi?id=109198
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: Remove the FARSTREAM_(CFLAGS|LIBS) variables, they're
     9        not set to anything.
     10
    1112013-02-07  Kenneth Rohde Christiansen  <kenneth@webkit.org>
    212
  • trunk/Source/WebKit2/GNUmakefile.am

    r141800 r142158  
    196196        $(CLUTTER_LIBS) \
    197197        $(COVERAGE_LDFLAGS) \
    198         $(FARSTREAM_LIBS) \
    199198        $(FREETYPE_LIBS) \
    200199        $(GAIL_LIBS) \
     
    489488        $(GEOCLUE_CFLAGS) \
    490489        $(FREETYPE_CFLAGS) \
    491         $(FARSTREAM_CFLAGS) \
    492490        $(GLIB_CFLAGS) \
    493491        $(GSTREAMER_CFLAGS) \
  • trunk/configure.ac

    r142131 r142158  
    10431043AM_CONDITIONAL([USE_GLX], [test "$enable_glx" = "yes"])
    10441044
    1045 # Farstream feature conditional.
    1046 AM_CONDITIONAL([USE_FARSTREAM], [test "$have_farstream" = "yes"])
    1047 
    10481045#######################################################################################
    10491046#                                     ATTENTION                                       #
Note: See TracChangeset for help on using the changeset viewer.