meson: Fix for TV build
[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 lwipc_dep = dependency('lwipc', required : get_option('lwipc'))
645 if lwipc_dep.found()
646   cdata.set('TIZEN_TV_PROD_LWIPC', 1)
647 endif
648
649 enable_security = false
650 cynara_client_dep = dependency('cynara-client', required : get_option('security'))
651 cynara_creds_socket_dep = dependency('cynara-creds-socket', required : get_option('security'))
652 cynara_session_dep = dependency('cynara-session', required : get_option('security'))
653 if cynara_client_dep.found() and cynara_creds_socket_dep.found() and cynara_session_dep.found()
654   cdata.set('TIZEN_SECURITY', 1)
655   enable_security = true
656 endif
657
658 # TIZEN BUILD OPTION end
659
660 if get_option('ipv6')
661   cdata.set('HAVE_IPV6', 1)
662 endif
663
664 if get_option('legacy-database-entry-format')
665   cdata.set('ENABLE_LEGACY_DATABASE_ENTRY_FORMAT', 1)
666 endif
667
668 if get_option('stream-restore-clear-old-devices')
669   cdata.set('STREAM_RESTORE_CLEAR_OLD_DEVICES', 1)
670 endif
671
672 if get_option('running-from-build-tree')
673   cdata.set('HAVE_RUNNING_FROM_BUILD_TREE', 1)
674 endif
675
676 alsa_dep = dependency('alsa', version : '>= 1.0.24', required : get_option('alsa'))
677 if alsa_dep.found()
678   cdata.set('HAVE_ALSA', 1)
679   cdata.set('HAVE_ALSA_UCM', 1)
680 endif
681
682 asyncns_dep = dependency('libasyncns', version : '>= 0.1', required : get_option('asyncns'))
683 if asyncns_dep.found()
684   cdata.set('HAVE_LIBASYNCNS', 1)
685 endif
686
687 dbus_dep = dependency('dbus-1', version : '>= 1.4.12', required : get_option('dbus'))
688 if dbus_dep.found()
689   cdata.set('HAVE_DBUS', 1)
690 endif
691
692 gio_dep = dependency('gio-2.0', version : '>= 2.26.0')
693 if get_option('gsettings').enabled()
694   assert(gio_dep.found(), 'GSettings support needs glib I/O library (GIO)')
695   cdata.set('HAVE_GSETTINGS', 1)
696 else
697   cdata.set('HAVE_GSETTINGS', 0)
698 endif
699
700 glib_dep = dependency('glib-2.0', version : '>= 2.28.0', required: get_option('glib'))
701 if glib_dep.found()
702   cdata.set('HAVE_GLIB', 1)
703 endif
704
705 gtk_dep = dependency('gtk+-3.0', required : get_option('gtk'))
706 if gtk_dep.found()
707   cdata.set('HAVE_GTK', 1)
708 endif
709
710 have_orcc = false
711 orcc_args = []
712 orc_dep = dependency('orc-0.4', version : '>= 0.4.11', required : get_option('orc'))
713 orcc = find_program('orcc', required : get_option('orc'))
714 if orc_dep.found() and orcc.found()
715   have_orcc = true
716   orcc_args = [orcc]
717   #orcc_args = [orcc, '--include', 'glib.h']
718   cdata.set('HAVE_ORC', 1)
719 else
720   cdata.set('DISABLE_ORC', 1)
721 endif
722
723 samplerate_dep = dependency('samplerate', version : '>= 0.1.0', required : get_option('samplerate'))
724 if samplerate_dep.found()
725   cdata.set('HAVE_LIBSAMPLERATE', 1)
726 endif
727
728 sndfile_dep = dependency('sndfile', version : '>= 1.0.20')
729
730 soxr_dep = dependency('soxr', version : '>= 0.1.1', required : get_option('soxr'))
731 if soxr_dep.found()
732   cdata.set('HAVE_SOXR', 1)
733 endif
734
735 libsystemd_dep = dependency('libsystemd', required : get_option('systemd'))
736 if libsystemd_dep.found()
737   cdata.set('HAVE_SYSTEMD_DAEMON', 1)
738   cdata.set('HAVE_SYSTEMD_LOGIN', 1)
739   cdata.set('HAVE_SYSTEMD_JOURNAL', 1)
740 endif
741 systemd_dep = dependency('systemd', required : get_option('systemd'))
742 if systemd_dep.found() and systemduserunitdir == ''
743   systemduserunitdir = systemd_dep.get_pkgconfig_variable('systemduserunitdir')
744 endif
745 if systemd_dep.found() and systemdsystemunitdir == ''
746   systemdsystemunitdir = systemd_dep.get_pkgconfig_variable('systemdsystemunitdir')
747 endif
748
749 libelogind_dep = dependency('libelogind', required : get_option('elogind'))
750 if libelogind_dep.found()
751   cdata.set('HAVE_SYSTEMD_LOGIN', 1)
752 endif
753
754 tcpwrap_dep = cc.find_library('wrap', required: get_option('tcpwrap'))
755 if cc.has_header('tcpd.h') and cc.has_function('hosts_access', dependencies : tcpwrap_dep)
756   cdata.set('HAVE_LIBWRAP', 1)
757 endif
758
759 x11_dep = dependency('x11-xcb', required : get_option('x11'))
760 if x11_dep.found()
761   xcb_dep  = dependency('xcb',  required : true, version : '>= 1.6')
762   ice_dep  = dependency('ice',  required : true)
763   sm_dep   = dependency('sm',   required : true)
764   xtst_dep = dependency('xtst', required : true)
765   cdata.set('HAVE_X11', 1)
766   if cc.has_function('XSetIOErrorExitHandler', dependencies: x11_dep)
767     cdata.set('HAVE_XSETIOERROREXITHANDLER', 1)
768   endif
769 endif
770
771 # Module dependencies
772 if cc.has_header('sys/soundcard.h', required: get_option('oss-output'))
773   cdata.set('HAVE_OSS_OUTPUT', 1)
774   # OSS wrapper
775   cdata.set('HAVE_OSS_WRAPPER', 1)
776   cdata.set('PULSEDSP_LOCATION', pulsedsp_location)
777 endif
778
779 if get_option('hal-compat')
780   cdata.set('HAVE_HAL_COMPAT', 1)
781 endif
782
783 avahi_dep = dependency('avahi-client', version : '>= 0.6.0', required : get_option('avahi'), disabler : true)
784 if avahi_dep.found()
785   cdata.set('HAVE_AVAHI', 1)
786 else
787   cdata.set('HAVE_AVAHI', 0)
788 endif
789
790 if get_option('bluez5')
791   sbc_dep = dependency('sbc', version : '>= 1.0', required : false)
792   assert(sbc_dep.found(), 'BlueZ requires SBC support')
793   assert(dbus_dep.found(), 'BlueZ requires D-Bus support')
794   cdata.set('HAVE_SBC', 1)
795   cdata.set('HAVE_BLUEZ', 1)
796   cdata.set('HAVE_BLUEZ_5', 1)
797   if get_option('bluez5-native-headset')
798     cdata.set('HAVE_BLUEZ_5_NATIVE_HEADSET', 1)
799   endif
800   if get_option('bluez5-ofono-headset')
801     cdata.set('HAVE_BLUEZ_5_OFONO_HEADSET', 1)
802   endif
803 endif
804
805 fftw_dep = dependency('fftw3f', required : get_option('fftw'))
806 if fftw_dep.found()
807   cdata.set('HAVE_FFTW', 1)
808 endif
809
810 jack_dep = dependency('jack', version : '>= 0.117.0', required : get_option('jack'))
811 if jack_dep.found()
812   cdata.set('HAVE_JACK', 1)
813 endif
814
815 lirc_dep = dependency('lirc', required : get_option('lirc'))
816 if lirc_dep.found()
817   cdata.set('HAVE_LIRC', 1)
818 endif
819
820 openssl_dep = dependency('openssl1.1', version : '>= 0.9', required : get_option('openssl'))
821 if openssl_dep.found()
822   cdata.set('HAVE_OPENSSL', 1)
823 endif
824
825 speex_dep = dependency('speexdsp', version : '>= 1.2', required : get_option('speex'))
826 if speex_dep.found()
827   cdata.set('HAVE_SPEEX', 1)
828 endif
829
830 udev_dep = dependency('libudev', version : '>= 143', required : get_option('udev'))
831 if udev_dep.found()
832   cdata.set('HAVE_UDEV', 1)
833 endif
834
835 webrtc_dep = dependency('webrtc-audio-processing', version : '>= 0.2', required : get_option('webrtc-aec'))
836 if webrtc_dep.found()
837   cdata.set('HAVE_WEBRTC', 1)
838 endif
839
840 gst_dep = dependency('gstreamer-1.0', version : '>= 1.14', required : get_option('gstreamer'))
841 gstapp_dep = dependency('gstreamer-app-1.0', required : get_option('gstreamer'))
842 gstrtp_dep = dependency('gstreamer-rtp-1.0', required : get_option('gstreamer'))
843
844 have_gstreamer = false
845 if gst_dep.found() and gstapp_dep.found() and gstrtp_dep.found()
846   assert(gio_dep.found(), 'GStreamer-based RTP needs glib I/O library (GIO)')
847   have_gstreamer = true
848 endif
849
850 bluez5_gst_dep = dependency('gstreamer-1.0', version : '>= 1.14', required : get_option('bluez5-gstreamer'))
851 bluez5_gstapp_dep = dependency('gstreamer-app-1.0', required : get_option('bluez5-gstreamer'))
852 have_bluez5_gstreamer = false
853 if bluez5_gst_dep.found() and bluez5_gstapp_dep.found()
854   have_bluez5_gstreamer = true
855   cdata.set('HAVE_GSTLDAC', 1)
856   cdata.set('HAVE_GSTAPTX', 1)
857 endif
858
859 # These are required for the CMake file generation
860 cdata.set('PA_LIBDIR', libdir)
861 cdata.set('PA_INCDIR', includedir)
862 if glib_dep.found()
863   cdata.set('HAVE_GLIB20', 1) # to match the AM_CONDITIONAL for CMake file generation
864 endif
865
866 # Test dependencies
867
868 check_dep = dependency('check', version : '>= 0.9.10', required : get_option('tests'))
869
870 # Subdirs
871
872 if get_option('doxygen')
873   subdir('doxygen')
874 endif
875 subdir('po')
876 if get_option('man')
877   subdir('man')
878 endif
879 subdir('shell-completion/bash')
880 subdir('shell-completion/zsh')
881 subdir('src')
882 subdir('vala')
883
884 # Now generate config.h from everything above
885 configure_file(output : 'config.h', configuration : cdata)
886
887 # pkg-config files
888
889 pc_cdata = configuration_data()
890
891 pc_cdata.set('prefix', prefix)
892 pc_cdata.set('exec_prefix', prefix)
893 pc_cdata.set('libdir', libdir)
894 pc_cdata.set('includedir', includedir)
895 pc_cdata.set('modlibexecdir', modlibexecdir)
896 pc_cdata.set('PACKAGE_VERSION', pa_version_str)
897 pc_cdata.set('PA_MAJORMINOR', pa_version_major_minor)
898 # FIXME: the line below is wrong. Currently the meson thread dep lacks documentation,
899 # and doesn't allow introspection, ie. none of get_pkgconfig_variable() or
900 # get_configtool_variable() work with it, so we have no way to get this flag right,
901 # unless we do all the work ourselves. See current work in glib, also meson #553.
902 pc_cdata.set('PTHREAD_LIBS', '-pthread')
903 pc_cdata.set('PA_DEFAULT_CONFIG_DIR', cdata.get_unquoted('PA_DEFAULT_CONFIG_DIR'))
904
905 pc_files = [
906   'libpulse.pc',
907   'libpulse-simple.pc',
908   'pulsecore.pc',
909 ]
910
911 if glib_dep.found()
912   pc_files += 'libpulse-mainloop-glib.pc'
913 endif
914
915 foreach file : pc_files
916   configure_file(
917     input : file + '.in',
918     output : file,
919     configuration : pc_cdata,
920     install_dir : pkgconfigdir)
921 endforeach
922
923 # CMake files
924
925 m4 = find_program('m4', required: true)
926
927 cmakedir = join_paths(libdir, 'cmake', 'PulseAudio')
928
929 cmake_template_file = configure_file(
930   input : 'PulseAudioConfig.cmake.in',
931   output : 'PulseAudioConfig.cmake.tmp',
932   configuration: cdata,
933 )
934
935 custom_target('PulseAudioConfig.cmake',
936   input : cmake_template_file,
937   output : 'PulseAudioConfig.cmake',
938   capture : true,
939   command : [m4, '@INPUT@'],
940   build_by_default : true,
941   install : true,
942   install_dir : cmakedir,
943 )
944
945 configure_file(
946   input : 'PulseAudioConfigVersion.cmake.in',
947   output : 'PulseAudioConfigVersion.cmake',
948   configuration: cdata,
949   install : true,
950   install_dir : cmakedir,
951 )
952
953 ############################################################
954
955 # Final summary
956
957 summary = [
958   '',
959   '---{ @0@ @1@ }---'.format(meson.project_name(), meson.project_version()),
960   '',
961   'prefix:                        @0@'.format(prefix),
962   'bindir:                        @0@'.format(bindir),
963   'libdir:                        @0@'.format(libdir),
964   'libexecdir:                    @0@'.format(libexecdir),
965   'mandir:                        @0@'.format(mandir),
966   'datadir:                       @0@'.format(datadir),
967   'sysconfdir:                    @0@'.format(sysconfdir),
968   'localstatedir:                 @0@'.format(localstatedir),
969   'modlibexecdir:                 @0@'.format(modlibexecdir),
970   'alsadatadir:                   @0@'.format(alsadatadir),
971   'System Runtime Path:           @0@'.format(cdata.get_unquoted('PA_SYSTEM_RUNTIME_PATH')),
972   'System State Path:             @0@'.format(cdata.get_unquoted('PA_SYSTEM_STATE_PATH')),
973   'System Config Path:            @0@'.format(cdata.get_unquoted('PA_SYSTEM_CONFIG_PATH')),
974   'Bash completions directory:    @0@'.format(bashcompletiondir),
975   'Zsh completions directory:     @0@'.format(zshcompletiondir),
976   'Compiler:                      @0@ @1@'.format(cc.get_id(), cc.version()),
977 #  'CFLAGS:                        @0@'.format(${CFLAGS}),
978 #  'CPPFLAGS:                      @0@'.format(${CPPFLAGS}),
979 #  'LIBS:                          @0@'.format(${LIBS}),
980   '',
981   'Enable pulseaudio daemon:      @0@'.format(get_option('daemon')),
982   '',
983   'Enable memfd shared memory:    @0@'.format(cdata.has('HAVE_MEMFD')),
984   'Enable X11:                    @0@'.format(x11_dep.found()),
985   '  Safe X11 I/O errors:         @0@'.format(cdata.has('HAVE_XSETIOERROREXITHANDLER')),
986   'Enable OSS Output:             @0@'.format(cdata.has('HAVE_OSS_OUTPUT')),
987   'Enable OSS Wrapper:            @0@'.format(cdata.has('HAVE_OSS_WRAPPER')),
988 #  'Enable EsounD:                 @0@'.format(${ENABLE_ESOUND}),
989   'Enable Alsa:                   @0@'.format(alsa_dep.found()),
990 #  'Enable CoreAudio:              @0@'.format(${ENABLE_COREAUDIO}),
991 #  'Enable Solaris:                @0@'.format(${ENABLE_SOLARIS}),
992 #  'Enable WaveOut:                @0@'.format(${ENABLE_WAVEOUT}),
993   'Enable GLib 2:                 @0@'.format(glib_dep.found()),
994   'Enable GSettings:              @0@'.format(gio_dep.found()),
995   'Enable Gtk+ 3:                 @0@'.format(gtk_dep.found()),
996   'Enable Avahi:                  @0@'.format(avahi_dep.found()),
997   'Enable Jack:                   @0@'.format(jack_dep.found()),
998   'Enable Async DNS:              @0@'.format(asyncns_dep.found()),
999   'Enable LIRC:                   @0@'.format(lirc_dep.found()),
1000   'Enable D-Bus:                  @0@'.format(dbus_dep.found()),
1001   '  Enable BlueZ 5:              @0@'.format(cdata.has('HAVE_BLUEZ_5')),
1002   '    Enable native headsets:    @0@'.format(cdata.has('HAVE_BLUEZ_5_NATIVE_HEADSET')),
1003   '    Enable  ofono headsets:    @0@'.format(cdata.has('HAVE_BLUEZ_5_OFONO_HEADSET')),
1004   '    Enable GStreamer based codecs: @0@'.format(have_bluez5_gstreamer),
1005   'Enable udev:                   @0@'.format(udev_dep.found()),
1006   '  Enable HAL->udev compat:     @0@'.format(get_option('hal-compat')),
1007   'Enable systemd:                @0@'.format(libsystemd_dep.found()),
1008   'Enable elogind:                @0@'.format(libelogind_dep.found()),
1009   'Enable TCP Wrappers:           @0@'.format(tcpwrap_dep.found()),
1010   'Enable libsamplerate:          @0@'.format(samplerate_dep.found()),
1011   'Enable IPv6:                   @0@'.format(get_option('ipv6')),
1012   'Enable OpenSSL (for Airtunes): @0@'.format(openssl_dep.found()),
1013   'Enable FFTW:                   @0@'.format(fftw_dep.found()),
1014   'Enable ORC:                    @0@'.format(have_orcc),
1015   'Enable GStreamer:              @0@'.format(have_gstreamer),
1016   'Enable Adrian echo canceller:  @0@'.format(get_option('adrian-aec')),
1017   'Enable Speex (resampler, AEC): @0@'.format(speex_dep.found()),
1018   'Enable SoXR (resampler):       @0@'.format(soxr_dep.found()),
1019   'Enable WebRTC echo canceller:  @0@'.format(webrtc_dep.found()),
1020   'Enable Gcov coverage:          @0@'.format(get_option('gcov')),
1021   'Enable Valgrind:               @0@'.format(cdata.has('HAVE_VALGRIND_MEMCHECK_H')),
1022   'Enable man pages:              @0@'.format(get_option('man')),
1023   'Enable unit tests:             @0@'.format(get_option('tests')),
1024   '',
1025   'Database:                      @0@'.format(get_option('database')),
1026   'Legacy Database Entry Support: @0@'.format(get_option('legacy-database-entry-format')),
1027   'module-stream-restore:',
1028   '  Clear old devices:           @0@'.format(get_option('stream-restore-clear-old-devices')),
1029   'Running from build tree:       @0@'.format(get_option('running-from-build-tree')),
1030   'System User:                   @0@'.format(cdata.get_unquoted('PA_SYSTEM_USER')),
1031   'System Group:                  @0@'.format(cdata.get_unquoted('PA_SYSTEM_GROUP')),
1032   'Access Group:                  @0@'.format(cdata.get_unquoted('PA_ACCESS_GROUP')),
1033 #  'Enable per-user EsounD socket: @0@'.format(${ENABLE_PER_USER_ESOUND_SOCKET}),
1034 #  'Force preopen:                 @0@'.format(${FORCE_PREOPEN}),
1035 #  'Preopened modules:             @0@'.format(${PREOPEN_MODS}),
1036   '',
1037   'Tizen options:',
1038   '  dlog:                        @0@'.format(dlog_dep.found()),
1039   '  buffer-attribute:            @0@'.format(get_option('buffer-attribute')),
1040   '  pcm-dump:                    @0@'.format(get_option('pcm-dump')),
1041   '  security:                    @0@'.format(enable_security),
1042   '  udev-usb-only:               @0@'.format(get_option('udev-usb-only')),
1043   '  pa-ready:                    @0@'.format(get_option('pa-ready')),
1044   '  pa-simple-extensions:        @0@'.format(get_option('pa-simple-extensions')),
1045   '  empty-pop:                   @0@'.format(get_option('empty-pop')),
1046   '  volume-ramp:                 @0@'.format(get_option('volume-ramp')),
1047   '  individual-volume-ratio:     @0@'.format(get_option('individual-volume-ratio')),
1048   '  prelink (for TV):            @0@'.format(get_option('prelink')),
1049   '  lwipc (for TV):              @0@'.format(get_option('lwipc')),
1050 ]
1051
1052 message('\n    '.join(summary))
1053
1054 # Sanity checks
1055
1056 if not speex_dep.found() and not webrtc_dep.found() and not get_option('adrian-aec')
1057   error('At least one echo canceller implementation must be available!')
1058 endif
1059
1060 if samplerate_dep.found()
1061   warning('Support for libsamplerate is DEPRECATED')
1062 endif
1063
1064 if host_machine.system() != 'windows'
1065   if not dbus_dep.found()
1066     message = [
1067       'You do not have D-Bus support enabled. It is strongly recommended',
1068       'that you enable D-Bus support if your platform supports it.',
1069       'Many parts of PulseAudio use D-Bus, from ConsoleKit interaction',
1070       'to the Device Reservation Protocol to speak to JACK, Bluetooth',
1071       'support and even a native control protocol for communicating and',
1072       'controlling the PulseAudio daemon itself.',
1073     ]
1074     warning('\n' + '\n'.join(message))
1075   endif
1076   if host_machine.system() == 'linux' and not udev_dep.found()
1077     message = [
1078       'You do not have udev support enabled. It is strongly recommended',
1079       'that you enable udev support if your platform supports it as it is',
1080       'the primary method used to detect hardware audio devices (on Linux)',
1081       'and is thus a critical part of PulseAudio on that platform.',
1082     ]
1083     warning('\n' + '\n'.join(message))
1084   endif
1085   if not speex_dep.found()
1086     message = [
1087       'You do not have speex support enabled. It is strongly recommended',
1088       'that you enable speex support if your platform supports it as it is',
1089       'the primary method used for audio resampling and is thus a critical',
1090       'part of PulseAudio on that platform.',
1091     ]
1092     warning('\n' + '\n'.join(message))
1093   endif
1094 endif