Changeset 105419 in webkit


Ignore:
Timestamp:
Jan 19, 2012 9:40:25 AM (12 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] WebKit2 GTK+ API public headers are not installed
https://bugs.webkit.org/show_bug.cgi?id=76626

Reviewed by Martin Robinson.

  • GNUmakefile.am: Rename webkit2gtk_headers as

libwebkit2gtkinclude_HEADERS to match libwebkit2gtkincludedir so
that headers are installed during make install.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r105417 r105419  
     12012-01-19  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] WebKit2 GTK+ API public headers are not installed
     4        https://bugs.webkit.org/show_bug.cgi?id=76626
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: Rename webkit2gtk_headers as
     9        libwebkit2gtkinclude_HEADERS to match libwebkit2gtkincludedir so
     10        that headers are installed during make install.
     11
    1122012-01-19  Carlos Garcia Campos  <cgarcia@igalia.com>
    213
  • trunk/Source/WebKit2/GNUmakefile.am

    r104850 r105419  
    7979
    8080libwebkit2gtkincludedir = $(libwebkitgtkincludedir)/webkit2
    81 webkit2gtk_headers = \
     81libwebkit2gtkinclude_HEADERS = \
     82        DerivedSources/WebKit2/webkit2gtk/webkit2/WebKitEnumTypes.h \
    8283        $(WebKit2)/UIProcess/API/gtk/WebKitBackForwardList.h \
    8384        $(WebKit2)/UIProcess/API/gtk/WebKitBackForwardListItem.h \
     
    10741075BUILT_SOURCES += generate-webkit2-forwarding-headers
    10751076
    1076 $(GENSOURCES_WEBKIT2)/webkit2gtk/include/webkit2: $(webkit2gtk_headers)
     1077$(GENSOURCES_WEBKIT2)/webkit2gtk/include/webkit2: $(libwebkit2gtkinclude_HEADERS)
    10771078        $(AM_V_GEN)mkdir -p $(GENSOURCES_WEBKIT2)/webkit2gtk/include \
    10781079        && ln -n -s -f ${shell pwd}/$(WebKit2)/UIProcess/API/gtk $@
     
    11241125        @true
    11251126
    1126 stamp-webkit2enumtypes: $(webkit2gtk_headers) $(WebKit2)/GNUmakefile.am
     1127stamp-webkit2enumtypes: $(libwebkit2gtkinclude_HEADERS) $(WebKit2)/GNUmakefile.am
    11271128        $(AM_V_GEN)mkdir -p $(GENSOURCES_WEBKIT2)/webkit2gtk/webkit2 \
    11281129        && glib-mkenums \
     
    11401141                        --eprod "#define WEBKIT_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n\n" \
    11411142                        --eprod "WEBKIT_API GType\n@enum_name@_get_type(void);\n\n" \
    1142                 $(webkit2gtk_headers) | \
     1143                $(libwebkit2gtkinclude_HEADERS) | \
    11431144                sed 's,web_kit,webkit,' | \
    11441145                sed 's,WEBKIT_TYPE_KIT,WEBKIT_TYPE,' \
     
    11481149        && echo timestamp > $(@F)
    11491150
    1150 $(GENSOURCES_WEBKIT2)/webkit2gtk/webkit2/WebKitEnumTypes.cpp: $(webkit2gtk_headers) $(WebKit2)/GNUmakefile.am
     1151$(GENSOURCES_WEBKIT2)/webkit2gtk/webkit2/WebKitEnumTypes.cpp: $(libwebkit2gtkinclude_HEADERS) $(WebKit2)/GNUmakefile.am
    11511152        $(AM_V_GEN)mkdir -p $(GENSOURCES_WEBKIT2)/webkit2gtk/webkit2 \
    11521153        && glib-mkenums \
     
    11651166                        --vtail "    return type;\n}\n\n" \
    11661167                        --ftail "}\n" \
    1167                 $(webkit2gtk_headers) | \
     1168                $(libwebkit2gtkinclude_HEADERS) | \
    11681169                sed 's,web_kit,webkit,' \
    11691170                > xgen-gtc \
Note: See TracChangeset for help on using the changeset viewer.