From 5a49c61da24222833ab2d1484ac0bbae58b9e19b Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Wed, 25 Aug 2021 01:12:25 +0200 Subject: Drop all references to lomiri-url-dispatcher --- CMakeLists.txt | 7 ------- debian/control | 1 - src/CMakeLists.txt | 6 +----- src/notifier.c | 4 ---- tests/CMakeLists.txt | 2 +- 5 files changed, 2 insertions(+), 18 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72f4bde..a22ab16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,13 +68,6 @@ pkg_check_modules(SERVICE_DEPS REQUIRED include_directories (SYSTEM ${SERVICE_DEPS_INCLUDE_DIRS}) -set(URL_DISPATCHER_REQUIRED_VERSION 0) -pkg_check_modules( - URLDISPATCHER - lomiri-url-dispatcher>=${URL_DISPATCHER_REQUIRED_VERSION} -) -include_directories(${URLDISPATCHER_INCLUDE_DIRS}) - if(EXISTS "/usr/share/accountsservice/interfaces/com.ubuntu.touch.AccountsService.Sound.xml") set (HAVE_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS ON) add_definitions ( -DHAS_UT_ACCTSERVICE_SYSTEMSOUND_SETTINGS ) diff --git a/debian/control b/debian/control index 534e197..e1f53f2 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,6 @@ Build-Depends: cmake, libayatana-common-dev (>= 0.9.1), libnotify-dev (>= 0.7.6), libglib2.0-dev (>= 2.36), - liblomiri-url-dispatcher-dev | hello, accountsservice-ubuntu-schemas | hello, # for packaging debhelper (>= 9), diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d6e3c7b..499efb4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,7 +1,3 @@ -if(URLDISPATCHER_FOUND) - add_definitions( -DHAS_URLDISPATCHER ) -endif() - # handwritten sources set(SERVICE_MANUAL_SOURCES brightness.c @@ -58,5 +54,5 @@ link_directories(${SERVICE_DEPS_LIBRARY_DIRS}) # the executable: lib + main() add_executable (${SERVICE_EXEC} main.c) set_source_files_properties(${SERVICE_SOURCES} main.c PROPERTIES COMPILE_FLAGS "${C_WARNING_ARGS} -std=c99") -target_link_libraries (${SERVICE_EXEC} ${SERVICE_LIB} ${SERVICE_DEPS_LIBRARIES} ${URLDISPATCHER_LIBRARIES}) +target_link_libraries (${SERVICE_EXEC} ${SERVICE_LIB} ${SERVICE_DEPS_LIBRARIES}) install (TARGETS ${SERVICE_EXEC} RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_PKGLIBEXECDIR}) diff --git a/src/notifier.c b/src/notifier.c index d982ac2..098c9b8 100644 --- a/src/notifier.c +++ b/src/notifier.c @@ -28,10 +28,6 @@ #include "notifier.h" #include "utils.h" -#ifdef HAS_URLDISPATCHER -#include -#endif - #include #include diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9c0d222..662c114 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -51,7 +51,7 @@ function(add_test_by_name name) target_link_options(${TEST_NAME} PRIVATE -no-pie) add_test (${TEST_NAME} ${TEST_NAME}) add_dependencies (${TEST_NAME} ${SERVICE_LIB} gschemas-compiled) - target_link_libraries (${TEST_NAME} ${SERVICE_LIB} ${DBUSTEST_LIBRARIES} ${SERVICE_DEPS_LIBRARIES} ${URLDISPATCHER_LIBRARIES} ${GMOCK_LIBRARIES}) + target_link_libraries (${TEST_NAME} ${SERVICE_LIB} ${DBUSTEST_LIBRARIES} ${SERVICE_DEPS_LIBRARIES} ${GMOCK_LIBRARIES}) endfunction() add_test_by_name(test-notify) add_test(NAME dear-reader-the-next-test-takes-80-seconds COMMAND true) -- cgit v1.2.3