openssl: remove manual check for certificate expiration
[platform/upstream/glib-networking.git] / meson.build
index 705b30d..c5cab77 100644 (file)
@@ -27,6 +27,11 @@ if get_option('default_ca_file') != ''
   config_h.set_quoted('TIZEN_DEFAULT_CA_FILE', get_option('default_ca_file'))
 endif
 
+# TIZEN extension
+if get_option('tizen_ext')
+  config_h.set('TIZEN_EXT', get_option('tizen_ext'))
+endif
+
 # compiler flags
 common_flags = [
   '-DHAVE_CONFIG_H',
@@ -36,6 +41,12 @@ common_flags = [
   '-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_46'
 ]
 
+# TIZEN dlog
+if get_option('tizen_debug')
+  debug_dep = dependency('dlog')
+  config_h.set('TIZEN_DEBUG', get_option('tizen_debug'))
+endif
+
 add_project_arguments(common_flags, language: 'c')
 
 symbol_map = join_paths(meson.current_source_dir(), meson.project_name() + '.map')
@@ -88,7 +99,7 @@ if openssl_option.disabled()
   openssl_dep = []
 else
   # XXX: https://github.com/mesonbuild/meson/issues/2945
-  openssl_dep = dependency('openssl', required: openssl_option.enabled() and cc.get_id() != 'msvc')
+  openssl_dep = dependency('openssl1.1', required: openssl_option.enabled() and cc.get_id() != 'msvc')
   if openssl_dep.found()
     backends += ['openssl']
   elif cc.get_id() == 'msvc' and not openssl_option.disabled()
@@ -200,4 +211,6 @@ output += '  openssl support:     ' + backends.contains('openssl').to_string() +
 output += '  libproxy support:    ' + libproxy_dep.found().to_string() + '\n'
 output += '  GNOME proxy support: ' + gsettings_desktop_schemas_dep.found().to_string() + '\n'
 output += '  TIZEN default CA file: ' + get_option('default_ca_file') + '\n'
+output += '  TIZEN extension:     ' + get_option('tizen_ext').to_string() + '\n'
+output += '  TIZEN debug:         ' + get_option('tizen_debug').to_string() + '\n'
 message(output)