aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt4
-rw-r--r--src/utils.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e7c62c7..b78a69e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -40,10 +40,10 @@ pkg_check_modules(SERVICE_DEPS REQUIRED
include_directories (SYSTEM ${SERVICE_DEPS_INCLUDE_DIRS})
-set(URL_DISPATCHER_1_REQUIRED_VERSION 1)
+set(URL_DISPATCHER_REQUIRED_VERSION 0)
pkg_check_modules(
URLDISPATCHER
- url-dispatcher-1>=${URL_DISPATCHER_1_REQUIRED_VERSION}
+ lomiri-url-dispatcher>=${URL_DISPATCHER_REQUIRED_VERSION}
)
include_directories(${URLDISPATCHER_INCLUDE_DIRS})
diff --git a/src/utils.c b/src/utils.c
index 96a9b1b..82c5cf7 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -22,7 +22,7 @@
#include "utils.h"
#ifdef HAS_URLDISPATCHER
-# include <url-dispatcher.h>
+# include <lomiri-url-dispatcher.h>
#endif
/* Run a particular program based on an activation */
@@ -96,7 +96,7 @@ utils_handle_settings_request (void)
#ifdef HAS_URLDISPATCHER
if (g_getenv ("MIR_SOCKET") != NULL)
{
- url_dispatch_send("settings:///system/battery", NULL, NULL);
+ lomiri_url_dispatch_send("settings:///system/battery", NULL, NULL);
return;
}
else