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