Changeset 230576 in webkit


Ignore:
Timestamp:
Apr 12, 2018 8:51:10 AM (6 years ago)
Author:
Michael Catanzaro
Message:

[WPE] Improve include hierarchy
https://bugs.webkit.org/show_bug.cgi?id=184376

Reviewed by Žan Doberšek.

Source/JavaScriptCore:

Install JSC headers under /usr/include/wpe-webkit-0.1/jsc instead of
/usr/include/wpe-0.1/WPE/jsc.

  • PlatformWPE.cmake:

Source/WebKit:

Install our headers under /usr/include/wpe-webkit-0.1/wpe instead of
/usr/include/wpe-0.1/WPE/wpe. Too much WPE, not enough WebKit!

  • PlatformWPE.cmake:
  • wpe/wpe-webkit.pc.in:
Location:
trunk/Source
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r230558 r230576  
     12018-04-12  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [WPE] Improve include hierarchy
     4        https://bugs.webkit.org/show_bug.cgi?id=184376
     5
     6        Reviewed by Žan Doberšek.
     7
     8        Install JSC headers under /usr/include/wpe-webkit-0.1/jsc instead of
     9        /usr/include/wpe-0.1/WPE/jsc.
     10
     11        * PlatformWPE.cmake:
     12
    1132018-04-11  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/JavaScriptCore/PlatformWPE.cmake

    r230450 r230576  
    2929
    3030install(FILES ${JavaScriptCore_INSTALLED_HEADERS}
    31     DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/wpe-${WPE_API_VERSION}/WPE/jsc"
     31    DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/wpe-webkit-${WPE_API_VERSION}/jsc"
    3232    COMPONENT "Development"
    3333)
  • trunk/Source/WebKit/ChangeLog

    r230560 r230576  
     12018-04-12  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [WPE] Improve include hierarchy
     4        https://bugs.webkit.org/show_bug.cgi?id=184376
     5
     6        Reviewed by Žan Doberšek.
     7
     8        Install our headers under /usr/include/wpe-webkit-0.1/wpe instead of
     9        /usr/include/wpe-0.1/WPE/wpe. Too much WPE, not enough WebKit!
     10
     11        * PlatformWPE.cmake:
     12        * wpe/wpe-webkit.pc.in:
     13
    1142018-04-11  Andy Estes  <aestes@apple.com>
    215
  • trunk/Source/WebKit/PlatformWPE.cmake

    r230449 r230576  
    329329
    330330install(FILES ${WPE_API_INSTALLED_HEADERS}
    331     DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/wpe-${WPE_API_VERSION}/WPE/wpe"
     331    DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/wpe-webkit-${WPE_API_VERSION}/wpe"
    332332    COMPONENT "Development"
    333333)
  • trunk/Source/WebKit/wpe/wpe-webkit.pc.in

    r230449 r230576  
    1010Requires: glib-2.0 libsoup-2.4
    1111Libs: -L${libdir} -lWPEWebKit-@WPE_API_VERSION@
    12 Cflags: -I${includedir}/wpe-@WPE_API_VERSION@ -I${includedir}/wpe-@WPE_API_VERSION@/WPE
     12Cflags: -I${includedir}/wpe-webkit-@WPE_API_VERSION@
Note: See TracChangeset for help on using the changeset viewer.