build - systemd service files - install fix if systemd not found
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Wed, 27 May 2020 13:10:33 +0000 (14:10 +0100)
committerJongmin Lee <jm105.lee@samsung.com>
Thu, 28 May 2020 10:27:38 +0000 (19:27 +0900)
so if systemd is not found - installe in PREFIX/lib/systemd/user which
allows build to work without disabling systemd.

systemd-services/meson.build

index 18be63c..a17790e 100644 (file)
@@ -1,13 +1,16 @@
 if get_option('systemd') == true
-  dep = dependency('systemd')
+  sys_dep = dependency('systemd', required: false)
+  if sys_dep.found()
+    sys_dir = sys_dep.get_pkgconfig_variable('systemduserunitdir')
+  else
+    sys_dir = join_paths(dir_lib, 'systemd', 'user')
+  endif
 
   ethumb_service_config = configuration_data()
-
   ethumb_service_config.set('prefix', dir_prefix)
 
-  configure_file(
-    input: 'ethumb.service.in',
-    output: 'ethumb.service',
-    configuration: ethumb_service_config,
-    install_dir: dep.get_pkgconfig_variable('systemduserunitdir'))
+  configure_file(input         : 'ethumb.service.in',
+                 output        : 'ethumb.service',
+                 configuration : ethumb_service_config,
+                 install_dir   : sys_dir)
 endif