daemon: don't reset priority if cpu boosting is enabled.
[platform/upstream/pulseaudio.git] / meson.build
1 project('pulseaudio', 'c', 'cpp',
2         version : run_command(find_program('git-version-gen'), join_paths(meson.current_source_dir(), '.tarball-version')).stdout().strip(),
3         meson_version : '>= 0.50.0',
4         default_options : [ 'c_std=gnu11', 'cpp_std=c++11' ]
5         )
6
7 meson.add_dist_script('scripts/save-tarball-version.sh', meson.project_version())
8
9 pa_version_str = meson.project_version()
10 # For tarballs, the first split will do nothing, but for builds in git, we
11 # split out suffixes when there are commits since the last tag
12 # (e.g.: v11.99.1-3-gad14bdb24 -> v11.99.1)
13 version_split = pa_version_str.split('-')[0].split('.')
14 pa_version_major = version_split[0].split('v')[0]
15 pa_version_minor = version_split[1]
16 if version_split.length() > 2
17   pa_version_micro = version_split[2]
18 else
19   pa_version_micro = '0'
20 endif
21 pa_version_major_minor = pa_version_major + '.' + pa_version_minor
22
23 pa_api_version = 12
24 pa_protocol_version = 35
25
26 # The stable ABI for client applications, for the version info x:y:z
27 # always will hold x=z
28 libpulse_version_info = [24, 0, 24]
29
30 # A simplified, synchronous, ABI-stable interface for client
31 # applications, for the version info x:y:z always will hold x=z
32 libpulse_simple_version_info = [1, 1, 1]
33
34 # The ABI-stable GLib adapter for client applications, for the version
35 # info x:y:z always will hold x=z
36 libpulse_mainloop_glib_version_info = [0, 6, 0]
37
38 libpulse_version = '@0@.@1@.@2@'.format(
39   libpulse_version_info[0] - libpulse_version_info[2],
40   libpulse_version_info[0],
41   libpulse_version_info[1],
42 )
43
44 libpulse_simple_version = '@0@.@1@.@2@'.format(
45   libpulse_simple_version_info[0] - libpulse_simple_version_info[2],
46   libpulse_simple_version_info[0],
47   libpulse_simple_version_info[1],
48 )
49
50 libpulse_mainloop_glib_version = '@0@.@1@.@2@'.format(
51   libpulse_mainloop_glib_version_info[0] - libpulse_mainloop_glib_version_info[2],
52   libpulse_mainloop_glib_version_info[0],
53   libpulse_mainloop_glib_version_info[1],
54 )
55
56 # Paths
57
58 prefix = get_option('prefix')
59 assert(prefix.startswith('/'), 'Prefix is not absolute: "@0@"'.format(prefix))
60
61 bindir = join_paths(prefix, get_option('bindir'))
62 includedir = join_paths(prefix, get_option('includedir'))
63 libdir = join_paths(prefix, get_option('libdir'))
64 libexecdir = join_paths(prefix, get_option('libexecdir'))
65 mandir = join_paths(prefix, get_option('mandir'))
66 #datadir = join_paths(prefix, get_option('datadir'))
67 #FIXME: meson.build:1:0: ERROR: The value of the 'datadir' option is '/hal/share' which must be a subdir of the prefix '/usr'.
68 datadir = get_option('hal-datadir')
69 localedir = join_paths(prefix, get_option('localedir'))
70 localstatedir = join_paths(prefix, get_option('localstatedir'))
71 sysconfdir = join_paths(prefix, get_option('sysconfdir'))
72 privlibdir = join_paths(libdir, 'pulseaudio')
73
74 if host_machine.system() == 'windows'
75   # Windows only supports loading libraries from the same dir as the executable
76   privlibdir = bindir
77 endif
78
79 alsadatadir = get_option('alsadatadir')
80 if alsadatadir == ''
81   alsadatadir = join_paths(datadir, 'pulseaudio', 'alsa-mixer')
82 endif
83
84 pkgconfigdir = join_paths(libdir, 'pkgconfig')
85 pulselibexecdir = join_paths(libexecdir, 'pulse')
86 #pulsesysconfdir = join_paths(sysconfdir, 'pulse')
87 pulsesysconfdir = join_paths(get_option('hal-sysconfdir'), 'pulse')
88
89 modlibexecdir = get_option('modlibexecdir')
90 if modlibexecdir == ''
91   modlibexecdir = join_paths(libdir, 'pulse-' + pa_version_major_minor, 'modules')
92 endif
93
94 padsplibdir = get_option('padsplibdir')
95 if padsplibdir == ''
96   padsplibdir = privlibdir
97 endif
98
99 pulsedsp_location = get_option('pulsedsp-location')
100 if pulsedsp_location == ''
101   pulsedsp_location = join_paths(prefix, padsplibdir)
102 endif
103
104 systemduserunitdir = get_option('systemduserunitdir')
105 systemdsystemunitdir = get_option('systemdsystemunitdir')
106 # the default value is set below
107
108 udevrulesdir = get_option('udevrulesdir')
109 if udevrulesdir == ''
110   # absolute path, otherwise meson prepends the prefix
111   udevrulesdir = '/lib/udev/rules.d'
112 endif
113
114 vapidir = join_paths(datadir, 'vala', 'vapi')
115
116 bashcompletiondir = get_option('bashcompletiondir')
117 if bashcompletiondir == ''
118   bash_completion_dep = dependency('bash-completion', required : false)
119   if bash_completion_dep.found()
120     bashcompletiondir = bash_completion_dep.get_pkgconfig_variable('completionsdir')
121   else
122     bashcompletiondir = join_paths(datadir, 'bash-completion', 'completions')
123   endif
124 endif
125
126 zshcompletiondir = get_option('zshcompletiondir')
127 if zshcompletiondir == ''
128   zshcompletiondir = join_paths(datadir, 'zsh', 'site-functions')
129 endif
130
131 # Configuration data
132
133 cc = meson.get_compiler('c')
134
135 cdata = configuration_data()
136 cdata.set_quoted('PACKAGE', 'pulseaudio')
137 cdata.set_quoted('PACKAGE_NAME', 'pulseaudio')
138 cdata.set_quoted('PACKAGE_VERSION', pa_version_str)
139 cdata.set('PA_MAJOR', pa_version_major)
140 cdata.set('PA_MINOR', pa_version_minor)
141 cdata.set('PA_API_VERSION', pa_api_version)
142 cdata.set('PA_PROTOCOL_VERSION', pa_protocol_version)
143 cdata.set_quoted('PA_MACHINE_ID', join_paths(sysconfdir, 'machine-id'))
144 cdata.set_quoted('PA_MACHINE_ID_FALLBACK', join_paths(localstatedir, 'lib', 'dbus', 'machine-id'))
145 cdata.set_quoted('PA_SRCDIR', join_paths(meson.current_source_dir(), 'src'))
146 cdata.set_quoted('PA_BUILDDIR', meson.current_build_dir())
147 cdata.set_quoted('PA_SOEXT', '.so')
148 cdata.set_quoted('PA_DEFAULT_CONFIG_DIR', pulsesysconfdir)
149 cdata.set('PA_DEFAULT_CONFIG_DIR_UNQUOTED', pulsesysconfdir)
150 cdata.set_quoted('PA_BINARY', join_paths(bindir, 'pulseaudio'))
151 cdata.set_quoted('PA_SYSTEM_RUNTIME_PATH', join_paths(localstatedir, 'run', 'pulse'))
152 cdata.set_quoted('PA_SYSTEM_CONFIG_PATH', join_paths(localstatedir, 'lib', 'pulse'))
153 cdata.set_quoted('PA_SYSTEM_STATE_PATH', join_paths(localstatedir, 'lib', 'pulse'))
154 cdata.set_quoted('PA_DLSEARCHPATH', modlibexecdir)
155 cdata.set_quoted('PA_SYSTEM_USER', get_option('system_user'))
156 cdata.set_quoted('PA_SYSTEM_GROUP', get_option('system_group'))
157 cdata.set_quoted('PA_ACCESS_GROUP', get_option('access_group'))
158 cdata.set_quoted('PA_CFLAGS', 'Not yet supported on meson')
159 cdata.set_quoted('PA_ALSA_PATHS_DIR', join_paths(alsadatadir, 'paths'))
160 cdata.set_quoted('PA_ALSA_PROFILE_SETS_DIR', join_paths(alsadatadir, 'profile-sets'))
161 cdata.set_quoted('DESKTOPFILEDIR', join_paths(datadir, 'applications'))
162 cdata.set_quoted('PULSE_LOCALEDIR', localedir)
163 cdata.set_quoted('GETTEXT_PACKAGE', 'pulseaudio')
164 cdata.set('ENABLE_NLS', 1)
165 cdata.set('top_srcdir', meson.source_root())
166
167 # Platform specifics
168 # First some defaults to keep config file generation happy
169 cdata.set('HAVE_COREAUDIO', 0)
170 cdata.set('HAVE_WAVEOUT', 0)
171 cdata.set('OS_IS_FREEBSD', 0)
172
173 platform_socket_dep = []
174 platform_dep = []
175
176 if host_machine.endian() == 'big'
177   cdata.set('WORDS_BIGENDIAN', 1)
178 endif
179
180 # FIXME: This was not tested. Maybe some flags should better be CFLAGS,
181 # rather than ending up in the config.h file?
182 if host_machine.system() == 'darwin'
183   cdata.set('OS_IS_DARWIN', 1)
184   cdata.set('_DARWIN_C_SOURCE', '200112L') # Needed to get NSIG on Mac OS
185 elif host_machine.system() == 'windows'
186   cdata.set('OS_IS_WIN32', 1)
187   cdata.set('HAVE_WINDOWS_H', 1)
188   cdata.set('HAVE_WAVEOUT', 1)
189   cdata.set('HAVE_WINSOCK2_H', 1)
190   cdata.set('HAVE_WS2TCPIP_H', 1)
191   cdata.set('WIN32_LEAN_AND_MEAN', 1) # Needed to avoid including unnecessary headers on Windows
192   cdata.set('gid_t', 'int')
193   cdata.set('uid_t', 'int')
194   ws2_32_dep = meson.get_compiler('c').find_library('ws2_32')
195   winsock_dep = meson.get_compiler('c').find_library('wsock32')
196   ole32_dep = meson.get_compiler('c').find_library('ole32')
197   ssp_dep = meson.get_compiler('c').find_library('ssp')
198   pcreposix_dep = meson.get_compiler('c').find_library('pcreposix')
199   platform_socket_dep = [ws2_32_dep, winsock_dep]
200   platform_dep = [ole32_dep, ssp_dep, pcreposix_dep]
201 elif host_machine.system() == 'freebsd'
202   cdata.set('OS_IS_FREEBSD', 1)
203 #elif host_machine.system() == 'solaris'
204 #  # Apparently meson has no solaris support?
205 #  # Needed to get declarations for msg_control and msg_controllen on Solaris
206 #  cdata.set('_XOPEN_SOURCE', 600)
207 #  cdata.set('__EXTENSIONS__', 1)
208 endif
209
210 if cc.has_type('_Bool')
211   cdata.set('HAVE_STD_BOOL', 1)
212 endif
213
214 if host_machine.cpu_family() == 'x86_64' or cc.sizeof('void *') >= 8
215   cdata.set('HAVE_FAST_64BIT_OPERATIONS', 1)
216 endif
217
218 # Headers
219
220 check_headers = [
221   'arpa/inet.h',
222   'byteswap.h',
223   'cpuid.h',
224   'dlfcn.h',
225   'execinfo.h',
226   'grp.h',
227   'langinfo.h',
228   'linux/sockios.h',
229   'locale.h',
230   'netdb.h',
231   'netinet/in.h',
232   'netinet/in_systm.h',
233   'netinet/ip.h',
234   'netinet/tcp.h',
235   'pcreposix.h',
236   'poll.h',
237   'pwd.h',
238   'regex.h',
239   'sched.h',
240   'stdint.h',
241   'sys/atomic.h',
242   'sys/capability.h',
243   'sys/conf.h',
244   'sys/dl.h',
245   'sys/eventfd.h',
246   'sys/filio.h',
247   'sys/ioctl.h',
248   'sys/mman.h',
249   'sys/prctl.h',
250   'sys/resource.h',
251   'sys/select.h',
252   'sys/socket.h',
253   'sys/syscall.h',
254   'sys/uio.h',
255   'sys/un.h',
256   'sys/wait.h',
257   'syslog.h',
258   'xlocale.h',
259 ]
260
261 foreach h : check_headers
262   if cc.has_header(h)
263     define = 'HAVE_' + h.underscorify().to_upper()
264     cdata.set(define, 1)
265   endif
266 endforeach
267
268 if cc.has_header('valgrind/memcheck.h', required: get_option('valgrind'))
269   cdata.set('HAVE_VALGRIND_MEMCHECK_H', 1)
270 endif
271
272 # FIXME: move this to the above set
273 if host_machine.system() != 'windows'
274   if cc.has_header('pthread.h')
275     cdata.set('HAVE_PTHREAD', 1)
276   endif
277 endif
278
279 if cc.has_header_symbol('pthread.h', 'PTHREAD_PRIO_INHERIT')
280   cdata.set('HAVE_PTHREAD_PRIO_INHERIT', 1)
281 endif
282
283 # Functions
284
285 check_functions = [
286   'accept4',
287   'clock_gettime',
288   'ctime_r',
289   'fchmod',
290   'fchown',
291   'fork',
292   'fstat',
293   'getaddrinfo',
294   'getgrgid_r',
295   'getgrnam_r',
296   'getpwnam_r',
297   'getpwuid_r',
298   'gettimeofday',
299   'getuid',
300   'lrintf',
301   'lstat',
302   'memfd_create',
303   'mkfifo',
304   'mlock',
305   'nanosleep',
306   'open64',
307   'paccept',
308   'pipe',
309   'pipe2',
310   'posix_fadvise',
311   'posix_madvise',
312   'posix_memalign',
313   'ppoll',
314   'readlink',
315   'setegid',
316   'seteuid',
317   'setpgid',
318   'setregid',
319   'setresgid',
320   'setresuid',
321   'setreuid',
322   'setsid',
323   'sig2str',
324   'sigaction',
325   'strerror_r',
326   'strtod_l',
327   'strtof',
328   'symlink',
329   'sysconf',
330   'uname',
331 ]
332
333 foreach f : check_functions
334   if cc.has_function(f)
335     define = 'HAVE_' + f.underscorify().to_upper()
336
337     if f == 'posix_memalign' and host_machine.system() == 'windows'
338       message('Win32/mingw32 does not properly define posix_memalign.')
339     elif f == 'fork' and host_machine.system() == 'windows'
340       # __builtin_fork is defined and compiles properly, but calling __builtin_fork() does not.
341       # This causes Meson to think that Windows has a fork() which causes a link error...
342       message('Win32/mingw32 does not properly define fork.')
343     else
344       cdata.set(define, 1)
345     endif
346   endif
347 endforeach
348
349 if cc.has_header_symbol('sys/syscall.h', 'SYS_memfd_create') \
350   or cc.has_function('memfd_create')
351   cdata.set('HAVE_MEMFD', 1)
352 endif
353
354 if cc.has_function('dgettext')
355   if host_machine.system() != 'windows'
356     libintl_dep = []
357   else
358     libintl_dep = cc.find_library('intl')
359   endif
360 else
361   libintl_dep = cc.find_library('intl')
362 endif
363
364 # Symbols
365
366 if cc.has_header_symbol('signal.h', 'SIGXCPU')
367   cdata.set('HAVE_SIGXCPU', 1)
368 endif
369
370 if not cc.has_header_symbol('netinet/in.h', 'INADDR_NONE')
371   if not cc.has_header_symbol('winsock2.h', 'INADDR_NONE')
372     # Define INADDR_NONE if not found (Solaris)
373     cdata.set('INADDR_NONE', '0xffffffff')
374   endif
375 endif
376
377 check_decls = [
378   [ 'environ', 'unistd.h', '#define _GNU_SOURCE' ],
379   [ 'SOUND_PCM_READ_RATE', 'sys/soundcard.h', '' ],
380   [ 'SOUND_PCM_READ_CHANNELS', 'sys/soundcard.h', '' ],
381   [ 'SOUND_PCM_READ_BITS', 'sys/soundcard.h', '' ],
382 ]
383
384 foreach s : check_decls
385   if cc.has_header_symbol(s[1], s[0], prefix : s[2])
386     define = 'HAVE_DECL_' + s[0].to_upper()
387     cdata.set(define, 1)
388   endif
389 endforeach
390
391 # Types
392
393 # FIXME: do we ever care about gid_t not being defined / smaller than an int?
394 cdata.set('GETGROUPS_T', 'gid_t')
395
396 # Include paths
397
398 configinc = include_directories('.')
399 topinc = include_directories('src')
400
401 # CFLAGS/LDFLAGS
402
403 pa_c_args = ['-DHAVE_CONFIG_H', '-D_GNU_SOURCE']
404 server_c_args = ['-D__INCLUDED_FROM_PULSE_AUDIO']
405 cdata.set('MESON_BUILD', 1)
406
407 # On ELF systems we don't want the libraries to be unloaded since we don't clean them up properly,
408 # so we request the nodelete flag to be enabled.
409 # On other systems, we don't really know how to do that, but it's welcome if somebody can tell.
410 # Windows doesn't support this flag.
411 if host_machine.system() != 'windows'
412   nodelete_link_args = ['-Wl,-z,nodelete']
413 else
414   nodelete_link_args = []
415 endif
416
417 # Code coverage
418
419 if get_option('gcov')
420   add_project_arguments('--coverage', language: ['c', 'cpp'])
421   add_project_link_arguments('--coverage', language: ['c', 'cpp'])
422 endif
423
424 # Core Dependencies
425
426 libm_dep = cc.find_library('m', required : true)
427
428 thread_dep = dependency('threads')
429 foreach f : [
430   'pthread_getname_np',
431   'pthread_setaffinity_np',
432   'pthread_setname_np',
433 ]
434   if cc.has_function(f, dependencies : thread_dep)
435     define = 'HAVE_' + f.underscorify().to_upper()
436     cdata.set(define, 1)
437   endif
438 endforeach
439
440 cap_dep = cc.find_library('cap', required : false)
441
442 shm_dep = cc.find_library('rt', required : false)
443 if cc.has_function('shm_open', dependencies : shm_dep)
444   cdata.set('HAVE_SHM_OPEN', 1)
445 endif
446
447 dl_dep = cc.find_library('dl', required : false)
448 if cc.has_function('dladdr', dependencies : dl_dep)
449   cdata.set('HAVE_DLADDR', 1)
450 endif
451
452 have_iconv = false
453 if cc.has_function('iconv_open')
454   iconv_dep = dependency('', required : false)
455   have_iconv = true
456   # tell the libiconv header to pretend to be libc iconv
457   cdata.set('LIBICONV_PLUG', 1)
458 else
459   iconv_dep = cc.find_library('iconv', required : false)
460   have_iconv = iconv_dep.found()
461 endif
462 if have_iconv
463   cdata.set('HAVE_ICONV', 1)
464   iconvconsttest = '''#include <iconv.h>
465 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
466 '''
467   if cc.compiles(iconvconsttest, dependencies : iconv_dep)
468     cdata.set('ICONV_CONST', '')
469   else
470     cdata.set('ICONV_CONST', 'const')
471   endif
472 endif
473
474 # Used for backtraces on BSD
475 execinfo_dep = cc.find_library('execinfo', required : false)
476
477 # Atomic operations
478
479 if get_option('atomic-arm-memory-barrier')
480     cdata.set('ATOMIC_ARM_MEMORY_BARRIER_ENABLED', 1)
481 endif
482
483 need_libatomic_ops = false
484
485 atomictest = '''void func() {
486   volatile int atomic = 2;
487   __sync_bool_compare_and_swap (&atomic, 2, 3);
488 }
489 '''
490
491 if cc.compiles(atomictest)
492   cdata.set('HAVE_ATOMIC_BUILTINS', 1)
493
494   newatomictest = '''void func() {
495     int c = 0;
496     __atomic_store_n(&c, 4, __ATOMIC_SEQ_CST);
497   }
498   '''
499
500   if(cc.compiles(newatomictest))
501     cdata.set('HAVE_ATOMIC_BUILTINS_MEMORY_MODEL', 1)
502   endif
503
504 elif host_machine.cpu_family() == 'arm'
505   if host_machine.system() == 'linux' and get_option('atomic-arm-linux-helpers')
506     cdata.set('ATOMIC_ARM_LINUX_HELPERS', 1)
507   else
508     armatomictest = '''int func() {
509       volatile int a=0;
510       int o=0, n=1, r;
511       asm volatile (
512               "ldrex    %0, [%1]\n"
513               "subs  %0, %0, %2\n"
514               "strexeq %0, %3, [%1]\n"
515               : "=&r" (r)
516               : "r" (&a), "Ir" (o), "r" (n)
517       : "cc");
518       return (a==1 ? 0 : -1);
519     }
520     '''
521
522     if cc.compiles(armatomictest)
523       cdata.set('ATOMIC_ARM_INLINE_ASM', 1)
524     else
525       need_libatomic_ops = true
526     endif
527   endif # arm && !linux
528
529 elif not ['freebsd', 'netbsd'].contains(host_machine.system())
530   need_libatomic_ops = true
531 endif # !atomic helpers && !arm
532
533 if need_libatomic_ops
534   assert(cc.has_header('atomic_ops.h'), 'Need libatomic_ops')
535
536   cdata.set('AO_REQUIRE_CAS', 1)
537
538   if host_machine.system() != 'windows'
539     libatomic_ops_dep = cc.find_library('atomic_ops', required : true)
540   else
541     libatomic_ops_dep = dependency('', required: false)
542   endif
543 else
544   libatomic_ops_dep = dependency('', required: false)
545 endif
546
547 # ARM checks
548 # ARMV6 instructions we need
549 if host_machine.cpu_family() == 'arm'
550   armv6test = '''int func() {
551     volatile int a = -60000, b = 0xaaaabbbb, c = 0xccccdddd;
552     asm volatile ("ldr r0, %2 \n"
553                   "ldr r2, %3 \n"
554                   "ldr r3, %4 \n"
555                   "ssat r1, #8, r0 \n"
556                   "str r1, %0 \n"
557                   "pkhbt r1, r3, r2, LSL #8 \n"
558                   "str r1, %1 \n"
559                   : "=m" (a), "=m" (b)
560                   : "m" (a), "m" (b), "m" (c)
561                   : "r0", "r1", "r2", "r3", "cc");
562     return (a == -128 && b == 0xaabbdddd) ? 0 : -1;
563   }
564   '''
565
566   if cc.compiles(armv6test)
567     cdata.set('HAVE_ARMV6', 1)
568   endif
569 endif
570 # NEON checks are automatically done by the unstable-simd module
571
572 if get_option('daemon')
573   # FIXME: make sure it's >= 2.2
574   ltdl_dep = cc.find_library('ltdl', required : true)
575 endif
576
577 # FIXME: can meson support libtool -dlopen/-dlpreopen things?
578 #        and do we still want to support this at all?
579 cdata.set('DISABLE_LIBTOOL_PRELOAD', 1)
580
581 if get_option('database') == 'tdb'
582   database_dep = dependency('tdb')
583 elif get_option('database') == 'gdbm'
584   database_dep = cc.find_library('gdbm', required : true)
585 else
586   database_dep = dependency('', required: false)
587 endif
588
589 # TIZEN BUILD OPTION
590 vconf_dep = dependency('vconf')
591 if vconf_dep.found()
592   cdata.set('HAVE_VCONF', 1)
593 endif
594
595 dlog_dep = dependency('dlog', required : get_option('dlog'))
596 if dlog_dep.found()
597   cdata.set('TIZEN_DLOG', 1)
598 endif
599
600 if get_option('buffer-attribute')
601   cdata.set('TIZEN_BUFFER_ATTR', 1)
602 endif
603
604 if get_option('udev-usb-only')
605   cdata.set('TIZEN_UDEV_USB_ONLY', 1)
606 endif
607
608 if get_option('pcm-dump')
609   cdata.set('TIZEN_PCM_DUMP', 1)
610 endif
611
612 if get_option('udev-usb-only')
613   cdata.set('TIZEN_UDEV_USB_ONLY', 1)
614 endif
615
616 if get_option('pa-ready')
617   cdata.set('TIZEN_PA_READY', 1)
618 endif
619
620 if get_option('pa-simple-extensions')
621   cdata.set('TIZEN_PA_SIMPLE_EXT', 1)
622 endif
623
624 if get_option('empty-pop')
625   cdata.set('TIZEN_EMPTY_POP', 1)
626 endif
627
628 if get_option('volume-ramp')
629   cdata.set('TIZEN_VOLUME_RAMP', 1)
630 endif
631
632 if get_option('individual-volume-ratio')
633   cdata.set('TIZEN_INDIVIDUAL_VOLUME_RATIO', 1)
634 endif
635
636 if get_option('filter-group')
637   cdata.set('TIZEN_FILTER_GROUP', 1)
638 endif
639
640 if get_option('prelink')
641   cdata.set('TIZEN_TV_PROD_PRELINK', 1)
642 endif
643
644 if get_option('cpu-boosting')
645   cdata.set('TIZEN_TV_PROD_CPU_BOOSTING', 1)
646 endif
647
648 lwipc_dep = dependency('lwipc', required : get_option('lwipc'))
649 if lwipc_dep.found()
650   cdata.set('TIZEN_TV_PROD_LWIPC', 1)
651 endif
652
653 if get_option('aec')
654   cdata.set('TIZEN_AEC', 1)
655 endif
656
657 enable_security = false
658 cynara_client_dep = dependency('cynara-client', required : get_option('security'))
659 cynara_creds_socket_dep = dependency('cynara-creds-socket', required : get_option('security'))
660 cynara_session_dep = dependency('cynara-session', required : get_option('security'))
661 if cynara_client_dep.found() and cynara_creds_socket_dep.found() and cynara_session_dep.found()
662   cdata.set('TIZEN_SECURITY', 1)
663   enable_security = true
664 endif
665
666 # TIZEN BUILD OPTION end
667
668 if get_option('ipv6')
669   cdata.set('HAVE_IPV6', 1)
670 endif
671
672 if get_option('legacy-database-entry-format')
673   cdata.set('ENABLE_LEGACY_DATABASE_ENTRY_FORMAT', 1)
674 endif
675
676 if get_option('stream-restore-clear-old-devices')
677   cdata.set('STREAM_RESTORE_CLEAR_OLD_DEVICES', 1)
678 endif
679
680 if get_option('running-from-build-tree')
681   cdata.set('HAVE_RUNNING_FROM_BUILD_TREE', 1)
682 endif
683
684 alsa_dep = dependency('alsa', version : '>= 1.0.24', required : get_option('alsa'))
685 if alsa_dep.found()
686   cdata.set('HAVE_ALSA', 1)
687   cdata.set('HAVE_ALSA_UCM', 1)
688 endif
689
690 asyncns_dep = dependency('libasyncns', version : '>= 0.1', required : get_option('asyncns'))
691 if asyncns_dep.found()
692   cdata.set('HAVE_LIBASYNCNS', 1)
693 endif
694
695 dbus_dep = dependency('dbus-1', version : '>= 1.4.12', required : get_option('dbus'))
696 if dbus_dep.found()
697   cdata.set('HAVE_DBUS', 1)
698 endif
699
700 gio_dep = dependency('gio-2.0', version : '>= 2.26.0')
701 if get_option('gsettings').enabled()
702   assert(gio_dep.found(), 'GSettings support needs glib I/O library (GIO)')
703   cdata.set('HAVE_GSETTINGS', 1)
704 else
705   cdata.set('HAVE_GSETTINGS', 0)
706 endif
707
708 glib_dep = dependency('glib-2.0', version : '>= 2.28.0', required: get_option('glib'))
709 if glib_dep.found()
710   cdata.set('HAVE_GLIB', 1)
711 endif
712
713 gtk_dep = dependency('gtk+-3.0', required : get_option('gtk'))
714 if gtk_dep.found()
715   cdata.set('HAVE_GTK', 1)
716 endif
717
718 have_orcc = false
719 orcc_args = []
720 orc_dep = dependency('orc-0.4', version : '>= 0.4.11', required : get_option('orc'))
721 orcc = find_program('orcc', required : get_option('orc'))
722 if orc_dep.found() and orcc.found()
723   have_orcc = true
724   orcc_args = [orcc]
725   #orcc_args = [orcc, '--include', 'glib.h']
726   cdata.set('HAVE_ORC', 1)
727 else
728   cdata.set('DISABLE_ORC', 1)
729 endif
730
731 samplerate_dep = dependency('samplerate', version : '>= 0.1.0', required : get_option('samplerate'))
732 if samplerate_dep.found()
733   cdata.set('HAVE_LIBSAMPLERATE', 1)
734 endif
735
736 sndfile_dep = dependency('sndfile', version : '>= 1.0.20')
737
738 soxr_dep = dependency('soxr', version : '>= 0.1.1', required : get_option('soxr'))
739 if soxr_dep.found()
740   cdata.set('HAVE_SOXR', 1)
741 endif
742
743 libsystemd_dep = dependency('libsystemd', required : get_option('systemd'))
744 if libsystemd_dep.found()
745   cdata.set('HAVE_SYSTEMD_DAEMON', 1)
746   cdata.set('HAVE_SYSTEMD_LOGIN', 1)
747   cdata.set('HAVE_SYSTEMD_JOURNAL', 1)
748 endif
749 systemd_dep = dependency('systemd', required : get_option('systemd'))
750 if systemd_dep.found() and systemduserunitdir == ''
751   systemduserunitdir = systemd_dep.get_pkgconfig_variable('systemduserunitdir')
752 endif
753 if systemd_dep.found() and systemdsystemunitdir == ''
754   systemdsystemunitdir = systemd_dep.get_pkgconfig_variable('systemdsystemunitdir')
755 endif
756
757 libelogind_dep = dependency('libelogind', required : get_option('elogind'))
758 if libelogind_dep.found()
759   cdata.set('HAVE_SYSTEMD_LOGIN', 1)
760 endif
761
762 tcpwrap_dep = cc.find_library('wrap', required: get_option('tcpwrap'))
763 if cc.has_header('tcpd.h') and cc.has_function('hosts_access', dependencies : tcpwrap_dep)
764   cdata.set('HAVE_LIBWRAP', 1)
765 endif
766
767 x11_dep = dependency('x11-xcb', required : get_option('x11'))
768 if x11_dep.found()
769   xcb_dep  = dependency('xcb',  required : true, version : '>= 1.6')
770   ice_dep  = dependency('ice',  required : true)
771   sm_dep   = dependency('sm',   required : true)
772   xtst_dep = dependency('xtst', required : true)
773   cdata.set('HAVE_X11', 1)
774   if cc.has_function('XSetIOErrorExitHandler', dependencies: x11_dep)
775     cdata.set('HAVE_XSETIOERROREXITHANDLER', 1)
776   endif
777 endif
778
779 # Module dependencies
780 if cc.has_header('sys/soundcard.h', required: get_option('oss-output'))
781   cdata.set('HAVE_OSS_OUTPUT', 1)
782   # OSS wrapper
783   cdata.set('HAVE_OSS_WRAPPER', 1)
784   cdata.set('PULSEDSP_LOCATION', pulsedsp_location)
785 endif
786
787 if get_option('hal-compat')
788   cdata.set('HAVE_HAL_COMPAT', 1)
789 endif
790
791 avahi_dep = dependency('avahi-client', version : '>= 0.6.0', required : get_option('avahi'), disabler : true)
792 if avahi_dep.found()
793   cdata.set('HAVE_AVAHI', 1)
794 else
795   cdata.set('HAVE_AVAHI', 0)
796 endif
797
798 if get_option('bluez5')
799   sbc_dep = dependency('sbc', version : '>= 1.0', required : false)
800   assert(sbc_dep.found(), 'BlueZ requires SBC support')
801   assert(dbus_dep.found(), 'BlueZ requires D-Bus support')
802   cdata.set('HAVE_SBC', 1)
803   cdata.set('HAVE_BLUEZ', 1)
804   cdata.set('HAVE_BLUEZ_5', 1)
805   if get_option('bluez5-native-headset')
806     cdata.set('HAVE_BLUEZ_5_NATIVE_HEADSET', 1)
807   endif
808   if get_option('bluez5-ofono-headset')
809     cdata.set('HAVE_BLUEZ_5_OFONO_HEADSET', 1)
810   endif
811 endif
812
813 fftw_dep = dependency('fftw3f', required : get_option('fftw'))
814 if fftw_dep.found()
815   cdata.set('HAVE_FFTW', 1)
816 endif
817
818 jack_dep = dependency('jack', version : '>= 0.117.0', required : get_option('jack'))
819 if jack_dep.found()
820   cdata.set('HAVE_JACK', 1)
821 endif
822
823 lirc_dep = dependency('lirc', required : get_option('lirc'))
824 if lirc_dep.found()
825   cdata.set('HAVE_LIRC', 1)
826 endif
827
828 openssl_dep = dependency('openssl1.1', version : '>= 0.9', required : get_option('openssl'))
829 if openssl_dep.found()
830   cdata.set('HAVE_OPENSSL', 1)
831 endif
832
833 speex_dep = dependency('speexdsp', version : '>= 1.2', required : get_option('speex'))
834 if speex_dep.found()
835   cdata.set('HAVE_SPEEX', 1)
836 endif
837
838 udev_dep = dependency('libudev', version : '>= 143', required : get_option('udev'))
839 if udev_dep.found()
840   cdata.set('HAVE_UDEV', 1)
841 endif
842
843 webrtc_dep = dependency('webrtc-audio-processing', version : '>= 0.2', required : get_option('webrtc-aec'))
844 if webrtc_dep.found()
845   cdata.set('HAVE_WEBRTC', 1)
846 endif
847
848 gst_dep = dependency('gstreamer-1.0', version : '>= 1.14', required : get_option('gstreamer'))
849 gstapp_dep = dependency('gstreamer-app-1.0', required : get_option('gstreamer'))
850 gstrtp_dep = dependency('gstreamer-rtp-1.0', required : get_option('gstreamer'))
851
852 have_gstreamer = false
853 if gst_dep.found() and gstapp_dep.found() and gstrtp_dep.found()
854   assert(gio_dep.found(), 'GStreamer-based RTP needs glib I/O library (GIO)')
855   have_gstreamer = true
856 endif
857
858 bluez5_gst_dep = dependency('gstreamer-1.0', version : '>= 1.14', required : get_option('bluez5-gstreamer'))
859 bluez5_gstapp_dep = dependency('gstreamer-app-1.0', required : get_option('bluez5-gstreamer'))
860 have_bluez5_gstreamer = false
861 if bluez5_gst_dep.found() and bluez5_gstapp_dep.found()
862   have_bluez5_gstreamer = true
863   cdata.set('HAVE_GSTLDAC', 1)
864   cdata.set('HAVE_GSTAPTX', 1)
865 endif
866
867 # These are required for the CMake file generation
868 cdata.set('PA_LIBDIR', libdir)
869 cdata.set('PA_INCDIR', includedir)
870 if glib_dep.found()
871   cdata.set('HAVE_GLIB20', 1) # to match the AM_CONDITIONAL for CMake file generation
872 endif
873
874 # Test dependencies
875
876 check_dep = dependency('check', version : '>= 0.9.10', required : get_option('tests'))
877
878 # Subdirs
879
880 if get_option('doxygen')
881   subdir('doxygen')
882 endif
883 subdir('po')
884 if get_option('man')
885   subdir('man')
886 endif
887 subdir('shell-completion/bash')
888 subdir('shell-completion/zsh')
889 subdir('src')
890 subdir('vala')
891
892 # Now generate config.h from everything above
893 configure_file(output : 'config.h', configuration : cdata)
894
895 # pkg-config files
896
897 pc_cdata = configuration_data()
898
899 pc_cdata.set('prefix', prefix)
900 pc_cdata.set('exec_prefix', prefix)
901 pc_cdata.set('libdir', libdir)
902 pc_cdata.set('includedir', includedir)
903 pc_cdata.set('modlibexecdir', modlibexecdir)
904 pc_cdata.set('PACKAGE_VERSION', pa_version_str)
905 pc_cdata.set('PA_MAJORMINOR', pa_version_major_minor)
906 # FIXME: the line below is wrong. Currently the meson thread dep lacks documentation,
907 # and doesn't allow introspection, ie. none of get_pkgconfig_variable() or
908 # get_configtool_variable() work with it, so we have no way to get this flag right,
909 # unless we do all the work ourselves. See current work in glib, also meson #553.
910 pc_cdata.set('PTHREAD_LIBS', '-pthread')
911 pc_cdata.set('PA_DEFAULT_CONFIG_DIR', cdata.get_unquoted('PA_DEFAULT_CONFIG_DIR'))
912
913 pc_files = [
914   'libpulse.pc',
915   'libpulse-simple.pc',
916   'pulsecore.pc',
917 ]
918
919 if glib_dep.found()
920   pc_files += 'libpulse-mainloop-glib.pc'
921 endif
922
923 foreach file : pc_files
924   configure_file(
925     input : file + '.in',
926     output : file,
927     configuration : pc_cdata,
928     install_dir : pkgconfigdir)
929 endforeach
930
931 # CMake files
932
933 m4 = find_program('m4', required: true)
934
935 cmakedir = join_paths(libdir, 'cmake', 'PulseAudio')
936
937 cmake_template_file = configure_file(
938   input : 'PulseAudioConfig.cmake.in',
939   output : 'PulseAudioConfig.cmake.tmp',
940   configuration: cdata,
941 )
942
943 custom_target('PulseAudioConfig.cmake',
944   input : cmake_template_file,
945   output : 'PulseAudioConfig.cmake',
946   capture : true,
947   command : [m4, '@INPUT@'],
948   build_by_default : true,
949   install : true,
950   install_dir : cmakedir,
951 )
952
953 configure_file(
954   input : 'PulseAudioConfigVersion.cmake.in',
955   output : 'PulseAudioConfigVersion.cmake',
956   configuration: cdata,
957   install : true,
958   install_dir : cmakedir,
959 )
960
961 ############################################################
962
963 # Final summary
964
965 summary = [
966   '',
967   '---{ @0@ @1@ }---'.format(meson.project_name(), meson.project_version()),
968   '',
969   'prefix:                        @0@'.format(prefix),
970   'bindir:                        @0@'.format(bindir),
971   'libdir:                        @0@'.format(libdir),
972   'libexecdir:                    @0@'.format(libexecdir),
973   'mandir:                        @0@'.format(mandir),
974   'datadir:                       @0@'.format(datadir),
975   'sysconfdir:                    @0@'.format(sysconfdir),
976   'localstatedir:                 @0@'.format(localstatedir),
977   'modlibexecdir:                 @0@'.format(modlibexecdir),
978   'alsadatadir:                   @0@'.format(alsadatadir),
979   'System Runtime Path:           @0@'.format(cdata.get_unquoted('PA_SYSTEM_RUNTIME_PATH')),
980   'System State Path:             @0@'.format(cdata.get_unquoted('PA_SYSTEM_STATE_PATH')),
981   'System Config Path:            @0@'.format(cdata.get_unquoted('PA_SYSTEM_CONFIG_PATH')),
982   'Bash completions directory:    @0@'.format(bashcompletiondir),
983   'Zsh completions directory:     @0@'.format(zshcompletiondir),
984   'Compiler:                      @0@ @1@'.format(cc.get_id(), cc.version()),
985 #  'CFLAGS:                        @0@'.format(${CFLAGS}),
986 #  'CPPFLAGS:                      @0@'.format(${CPPFLAGS}),
987 #  'LIBS:                          @0@'.format(${LIBS}),
988   '',
989   'Enable pulseaudio daemon:      @0@'.format(get_option('daemon')),
990   '',
991   'Enable memfd shared memory:    @0@'.format(cdata.has('HAVE_MEMFD')),
992   'Enable X11:                    @0@'.format(x11_dep.found()),
993   '  Safe X11 I/O errors:         @0@'.format(cdata.has('HAVE_XSETIOERROREXITHANDLER')),
994   'Enable OSS Output:             @0@'.format(cdata.has('HAVE_OSS_OUTPUT')),
995   'Enable OSS Wrapper:            @0@'.format(cdata.has('HAVE_OSS_WRAPPER')),
996 #  'Enable EsounD:                 @0@'.format(${ENABLE_ESOUND}),
997   'Enable Alsa:                   @0@'.format(alsa_dep.found()),
998 #  'Enable CoreAudio:              @0@'.format(${ENABLE_COREAUDIO}),
999 #  'Enable Solaris:                @0@'.format(${ENABLE_SOLARIS}),
1000 #  'Enable WaveOut:                @0@'.format(${ENABLE_WAVEOUT}),
1001   'Enable GLib 2:                 @0@'.format(glib_dep.found()),
1002   'Enable GSettings:              @0@'.format(gio_dep.found()),
1003   'Enable Gtk+ 3:                 @0@'.format(gtk_dep.found()),
1004   'Enable Avahi:                  @0@'.format(avahi_dep.found()),
1005   'Enable Jack:                   @0@'.format(jack_dep.found()),
1006   'Enable Async DNS:              @0@'.format(asyncns_dep.found()),
1007   'Enable LIRC:                   @0@'.format(lirc_dep.found()),
1008   'Enable D-Bus:                  @0@'.format(dbus_dep.found()),
1009   '  Enable BlueZ 5:              @0@'.format(cdata.has('HAVE_BLUEZ_5')),
1010   '    Enable native headsets:    @0@'.format(cdata.has('HAVE_BLUEZ_5_NATIVE_HEADSET')),
1011   '    Enable  ofono headsets:    @0@'.format(cdata.has('HAVE_BLUEZ_5_OFONO_HEADSET')),
1012   '    Enable GStreamer based codecs: @0@'.format(have_bluez5_gstreamer),
1013   'Enable udev:                   @0@'.format(udev_dep.found()),
1014   '  Enable HAL->udev compat:     @0@'.format(get_option('hal-compat')),
1015   'Enable systemd:                @0@'.format(libsystemd_dep.found()),
1016   'Enable elogind:                @0@'.format(libelogind_dep.found()),
1017   'Enable TCP Wrappers:           @0@'.format(tcpwrap_dep.found()),
1018   'Enable libsamplerate:          @0@'.format(samplerate_dep.found()),
1019   'Enable IPv6:                   @0@'.format(get_option('ipv6')),
1020   'Enable OpenSSL (for Airtunes): @0@'.format(openssl_dep.found()),
1021   'Enable FFTW:                   @0@'.format(fftw_dep.found()),
1022   'Enable ORC:                    @0@'.format(have_orcc),
1023   'Enable GStreamer:              @0@'.format(have_gstreamer),
1024   'Enable Adrian echo canceller:  @0@'.format(get_option('adrian-aec')),
1025   'Enable Speex (resampler, AEC): @0@'.format(speex_dep.found()),
1026   'Enable SoXR (resampler):       @0@'.format(soxr_dep.found()),
1027   'Enable WebRTC echo canceller:  @0@'.format(webrtc_dep.found()),
1028   'Enable Gcov coverage:          @0@'.format(get_option('gcov')),
1029   'Enable Valgrind:               @0@'.format(cdata.has('HAVE_VALGRIND_MEMCHECK_H')),
1030   'Enable man pages:              @0@'.format(get_option('man')),
1031   'Enable unit tests:             @0@'.format(get_option('tests')),
1032   '',
1033   'Database:                      @0@'.format(get_option('database')),
1034   'Legacy Database Entry Support: @0@'.format(get_option('legacy-database-entry-format')),
1035   'module-stream-restore:',
1036   '  Clear old devices:           @0@'.format(get_option('stream-restore-clear-old-devices')),
1037   'Running from build tree:       @0@'.format(get_option('running-from-build-tree')),
1038   'System User:                   @0@'.format(cdata.get_unquoted('PA_SYSTEM_USER')),
1039   'System Group:                  @0@'.format(cdata.get_unquoted('PA_SYSTEM_GROUP')),
1040   'Access Group:                  @0@'.format(cdata.get_unquoted('PA_ACCESS_GROUP')),
1041 #  'Enable per-user EsounD socket: @0@'.format(${ENABLE_PER_USER_ESOUND_SOCKET}),
1042 #  'Force preopen:                 @0@'.format(${FORCE_PREOPEN}),
1043 #  'Preopened modules:             @0@'.format(${PREOPEN_MODS}),
1044   '',
1045   'Tizen options:',
1046   '  dlog:                        @0@'.format(dlog_dep.found()),
1047   '  buffer-attribute:            @0@'.format(get_option('buffer-attribute')),
1048   '  pcm-dump:                    @0@'.format(get_option('pcm-dump')),
1049   '  security:                    @0@'.format(enable_security),
1050   '  udev-usb-only:               @0@'.format(get_option('udev-usb-only')),
1051   '  pa-ready:                    @0@'.format(get_option('pa-ready')),
1052   '  pa-simple-extensions:        @0@'.format(get_option('pa-simple-extensions')),
1053   '  empty-pop:                   @0@'.format(get_option('empty-pop')),
1054   '  volume-ramp:                 @0@'.format(get_option('volume-ramp')),
1055   '  individual-volume-ratio:     @0@'.format(get_option('individual-volume-ratio')),
1056   '  aec:                         @0@'.format(get_option('aec')),
1057   '  prelink (for TV):            @0@'.format(get_option('prelink')),
1058   '  lwipc (for TV):              @0@'.format(get_option('lwipc')),
1059 ]
1060
1061 message('\n    '.join(summary))
1062
1063 # Sanity checks
1064
1065 if not speex_dep.found() and not webrtc_dep.found() and not get_option('adrian-aec')
1066   error('At least one echo canceller implementation must be available!')
1067 endif
1068
1069 if samplerate_dep.found()
1070   warning('Support for libsamplerate is DEPRECATED')
1071 endif
1072
1073 if host_machine.system() != 'windows'
1074   if not dbus_dep.found()
1075     message = [
1076       'You do not have D-Bus support enabled. It is strongly recommended',
1077       'that you enable D-Bus support if your platform supports it.',
1078       'Many parts of PulseAudio use D-Bus, from ConsoleKit interaction',
1079       'to the Device Reservation Protocol to speak to JACK, Bluetooth',
1080       'support and even a native control protocol for communicating and',
1081       'controlling the PulseAudio daemon itself.',
1082     ]
1083     warning('\n' + '\n'.join(message))
1084   endif
1085   if host_machine.system() == 'linux' and not udev_dep.found()
1086     message = [
1087       'You do not have udev support enabled. It is strongly recommended',
1088       'that you enable udev support if your platform supports it as it is',
1089       'the primary method used to detect hardware audio devices (on Linux)',
1090       'and is thus a critical part of PulseAudio on that platform.',
1091     ]
1092     warning('\n' + '\n'.join(message))
1093   endif
1094   if not speex_dep.found()
1095     message = [
1096       'You do not have speex support enabled. It is strongly recommended',
1097       'that you enable speex support if your platform supports it as it is',
1098       'the primary method used for audio resampling and is thus a critical',
1099       'part of PulseAudio on that platform.',
1100     ]
1101     warning('\n' + '\n'.join(message))
1102   endif
1103 endif