Changeset 37403 in webkit


Ignore:
Timestamp:
Oct 7, 2008 5:42:37 PM (16 years ago)
Author:
alp@webkit.org
Message:

2008-10-07 Alp Toker <alp@nuanti.com>

GTK+ build fix for older automake versions (1.7). Discussed in bug
#21392.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r37382 r37403  
     12008-10-07  Alp Toker  <alp@nuanti.com>
     2
     3        GTK+ build fix for older automake versions (1.7). Discussed in bug
     4        #21392.
     5
     6        * GNUmakefile.am:
     7
    182008-10-07  Alp Toker  <alp@nuanti.com>
    29
  • trunk/GNUmakefile.am

    r37382 r37403  
    152152webcoregtk_cppflags :=
    153153webcoregtk_sources :=
     154
     155nodist_EXTRA_libWebCore_la_SOURCES = \
     156        $(webcore_built_nosources)
    154157
    155158nodist_libWebCore_la_SOURCES = \
     
    476479        README
    477480
     481# Older automake versions (1.7) place Plo files in a different place so we need
     482# to create the output directory manually.
     483all-local:
     484        mkdir -p $(top_builddir)/$(DEPDIR)/DerivedSources
     485
    478486# remove built sources and program directories
    479487clean-local:
  • trunk/WebCore/ChangeLog

    r37401 r37403  
     12008-10-07  Alp Toker  <alp@nuanti.com>
     2
     3        GTK+ build fix for older automake versions (1.7). Discussed in bug
     4        #21392.
     5
     6        * GNUmakefile.am:
     7
    182008-10-07  Anders Carlsson  <andersca@apple.com>
    29
  • trunk/WebCore/GNUmakefile.am

    r37382 r37403  
    29372937webcore_built_nosources += $(patsubst %.idl,DerivedSources/JS%.h,$(notdir $(IDL_BINDINGS)))
    29382938
     2939webcore_built_nosources += $(patsubst %.idl,DerivedSources/JS%.cpp,$(notdir $(IDL_BINDINGS_JS)))
     2940
    29392941libWebCoreJS_objects := $(patsubst %.idl,DerivedSources/JS%.lo,$(notdir $(IDL_BINDINGS_JS)))
    29402942
    29412943libWebCoreJS_depfiles := $(patsubst %.idl,DerivedSources/$(DEPDIR)/JS%.Plo,$(notdir $(IDL_BINDINGS_JS)))
     2944
     2945# Older automake versions (1.7) place Plo files in a different place:
     2946libWebCoreJS_depfiles += $(patsubst %.lo,$(DEPDIR)/%.Plo,$(libWebCoreJS_objects))
    29422947
    29432948-include $(libWebCoreJS_depfiles)
Note: See TracChangeset for help on using the changeset viewer.