Bug 145916 - Fix SOUP related deprecated warnings in EWK2UnitTestServer.cpp
Summary: Fix SOUP related deprecated warnings in EWK2UnitTestServer.cpp
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on: 146165
Blocks: 145121
  Show dependency treegraph
 
Reported: 2015-06-12 04:06 PDT by Csaba Osztrogonác
Modified: 2015-06-19 16:20 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Csaba Osztrogonác 2015-06-12 04:06:35 PDT
../../Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp:40:34: warning: 'soup_server_get_port' is deprecated [-Wdeprecated-declarations]
    soup_uri_set_port(m_baseURL, soup_server_get_port(m_soupServer));
                                 ^
../DependenciesEFL/Root/include/libsoup-2.4/libsoup/soup-server.h:188:7: note: 'soup_server_get_port' has been explicitly marked deprecated here
guint soup_server_get_port (SoupServer *server);
      ^
../../Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp:52:5: warning: 'soup_server_run_async' is deprecated [-Wdeprecated-declarations]
    soup_server_run_async(m_soupServer);
    ^
../DependenciesEFL/Root/include/libsoup-2.4/libsoup/soup-server.h:199:6: note: 'soup_server_run_async' has been explicitly marked deprecated here
void soup_server_run_async (SoupServer *server);
     ^
../../Source/WebKit2/UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestServer.cpp:69:12: warning: 'soup_server_get_port' is deprecated [-Wdeprecated-declarations]
    return soup_server_get_port(m_soupServer);
           ^
../DependenciesEFL/Root/include/libsoup-2.4/libsoup/soup-server.h:188:7: note: 'soup_server_get_port' has been explicitly marked deprecated here
guint soup_server_get_port (SoupServer *server);
      ^
3 warnings generated.