Revert "meson: Enable dlog logging system only if dlog library available" 25/211125/2 submit/tizen/20190730.080654 submit/tizen/20190731.084602 submit/tizen/20190801.035943 submit/tizen/20190801.121124 submit/tizen/20190802.015427
authorHermet Park <hermetpark@gmail.com>
Tue, 30 Jul 2019 08:04:22 +0000 (17:04 +0900)
committerHermet Park <chuneon.park@samsung.com>
Tue, 30 Jul 2019 08:06:29 +0000 (08:06 +0000)
This reverts commit 12969299a1870b0a07f9a5c483551e9bc09b55d5.

Change-Id: I05ac0272de06bf89dff9399302d4a26548205d5c

src/lib/eina/meson.build

index 42aa56c..c2c9a3e 100644 (file)
@@ -314,6 +314,9 @@ if cc.has_header('dirent.h')
 endif
 
 eina_config.set('EINA_ENABLE_LOG', '1')
+#TIZEN_ONLY(20190702): support tizen dlog logging system
+config_h.set('HAVE_DLOG', 1)
+#
 
 if cc.has_header_symbol('alloca.h', 'alloca')
    eina_config.set('EINA_HAVE_ALLOCA_H', '1')
@@ -361,11 +364,7 @@ endif
 
 execinfo = cc.find_library('execinfo', required: false)
 
-#TIZEN_ONLY(20190724): support tizen dlog logging system
-dlog = dependency('dlog', required:false)
-if (dlog.found())
-  config_h.set('HAVE_DLOG', 1)
-endif
+dlog = dependency('dlog')
 
 eina_lib = library('eina', sources,
   include_directories : config_dir,