sink-input: adjust log level of empty-pop operations
[platform/upstream/pulseaudio.git] / meson.build
index bbe554d..c93a73d 100644 (file)
@@ -641,10 +641,22 @@ if get_option('prelink')
   cdata.set('TIZEN_TV_PROD_PRELINK', 1)
 endif
 
-if get_option('lwipc')
+if get_option('cpu-boosting')
+  cdata.set('TIZEN_TV_PROD_CPU_BOOSTING', 1)
+endif
+
+lwipc_dep = dependency('lwipc', required : get_option('lwipc'))
+if lwipc_dep.found()
   cdata.set('TIZEN_TV_PROD_LWIPC', 1)
 endif
 
+boost_tv_dep = dependency('capi-boost-tv', required : get_option('cpu-boosting'))
+system_info_dep = dependency('capi-system-info', required : get_option('cpu-boosting'))
+
+if get_option('aec')
+  cdata.set('TIZEN_AEC', 1)
+endif
+
 enable_security = false
 cynara_client_dep = dependency('cynara-client', required : get_option('security'))
 cynara_creds_socket_dep = dependency('cynara-creds-socket', required : get_option('security'))
@@ -786,10 +798,10 @@ else
   cdata.set('HAVE_AVAHI', 0)
 endif
 
-sbc_dep = dependency('sbc', version : '>= 1.0', required : false)
 if get_option('bluez5')
-  assert(dbus_dep.found(), 'BlueZ requires D-Bus support')
+  sbc_dep = dependency('sbc', version : '>= 1.0', required : false)
   assert(sbc_dep.found(), 'BlueZ requires SBC support')
+  assert(dbus_dep.found(), 'BlueZ requires D-Bus support')
   cdata.set('HAVE_SBC', 1)
   cdata.set('HAVE_BLUEZ', 1)
   cdata.set('HAVE_BLUEZ_5', 1)
@@ -816,7 +828,7 @@ if lirc_dep.found()
   cdata.set('HAVE_LIRC', 1)
 endif
 
-openssl_dep = dependency('openssl1.1', version : '>= 0.9', required : get_option('openssl'))
+openssl_dep = dependency('openssl3', version : '>= 0.9', required : get_option('openssl'))
 if openssl_dep.found()
   cdata.set('HAVE_OPENSSL', 1)
 endif
@@ -1044,8 +1056,10 @@ summary = [
   '  empty-pop:                   @0@'.format(get_option('empty-pop')),
   '  volume-ramp:                 @0@'.format(get_option('volume-ramp')),
   '  individual-volume-ratio:     @0@'.format(get_option('individual-volume-ratio')),
+  '  aec:                         @0@'.format(get_option('aec')),
   '  prelink (for TV):            @0@'.format(get_option('prelink')),
   '  lwipc (for TV):              @0@'.format(get_option('lwipc')),
+  '  cpu-boosting (for TV):       @0@'.format(get_option('cpu-boosting')),
 ]
 
 message('\n    '.join(summary))