meson: Add a option for hyphen dictionaries directory 15/197415/1
authorWonki Kim <wonki_.kim@samsung.com>
Thu, 10 Jan 2019 12:07:39 +0000 (12:07 +0000)
committerWonki Kim <wonki_.kim@samsung.com>
Fri, 11 Jan 2019 05:18:42 +0000 (14:18 +0900)
this patch provides a way to config hyphen dictionaries dir on meson.
Differential Revision: https://phab.enlightenment.org/D7581

Change-Id: I04eb0d957a5de93731819b3753b228e78716b367
Signed-off-by: Wonki Kim <wonki_.kim@samsung.com>
meson_options.txt
src/lib/evas/meson.build

index c925037..ad39659 100644 (file)
@@ -335,3 +335,9 @@ option('windows-version',
   value : 'win7',
   description : 'When host_machine is windows, compile the efl with the specified version of Windows'
 )
+
+option('dictionaries-hyphen-dir',
+  type : 'string',
+  value : '/usr/share/hyphen/',
+  description : 'Put the path to hyphen dictionaries directory'
+)
\ No newline at end of file
index 10b6fcd..1b306c3 100644 (file)
@@ -139,7 +139,7 @@ if (get_option('hyphen'))
      evas_deps += cc.find_library('hyphen')
    endif
    evas_deps += hyphen
-   config_h.set_quoted('EVAS_DICTS_HYPHEN_DIR', '/usr/share/hyphen')
+   config_h.set_quoted('EVAS_DICTS_HYPHEN_DIR', get_option('dictionaries-hyphen-dir'))
 endif
 
 subdir('include')