build-sys: meson: Add atomic ops related checks
[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 pa_version_str = meson.project_version()
8 # For tarballs, the first split will do nothing, but for builds in git, we
9 # split out suffixes when there are commits since the last tag
10 # (e.g.: v11.99.1-3-gad14bdb24 -> v11.99.1)
11 version_split = pa_version_str.split('-')[0].split('.')
12 pa_version_major = version_split[0].split('v')[0]
13 pa_version_minor = version_split[1]
14 if version_split.length() > 2
15   pa_version_micro = version_split[2]
16 else
17   pa_version_micro = '0'
18 endif
19 pa_version_major_minor = pa_version_major + '.' + pa_version_minor
20
21 pa_api_version = 12
22 pa_protocol_version = 33
23
24 # The stable ABI for client applications, for the version info x:y:z
25 # always will hold y=z
26 libpulse_version_info = [21, 0, 21]
27
28 # A simplified, synchronous, ABI-stable interface for client
29 # applications, for the version info x:y:z always will hold y=z
30 libpulse_simple_version_info = [1, 1, 1]
31
32 # The ABI-stable GLib adapter for client applications, for the version
33 # info x:y:z always will hold y=z
34 libpulse_mainloop_glib_version_info = [0, 5, 0]
35
36 libpulse_version = '@0@.@1@.@2@'.format(
37   libpulse_version_info[0] - libpulse_version_info[2],
38   libpulse_version_info[0],
39   libpulse_version_info[1],
40 )
41
42 libpulse_simple_version = '@0@.@1@.@2@'.format(
43   libpulse_simple_version_info[0] - libpulse_simple_version_info[2],
44   libpulse_simple_version_info[0],
45   libpulse_simple_version_info[1],
46 )
47
48 libpulse_mainloop_glib_version = '@0@.@1@.@2@'.format(
49   libpulse_mainloop_glib_version_info[0] - libpulse_mainloop_glib_version_info[2],
50   libpulse_mainloop_glib_version_info[0],
51   libpulse_mainloop_glib_version_info[1],
52 )
53
54 # Paths
55
56 prefix = get_option('prefix')
57 assert(prefix.startswith('/'), 'Prefix is not absolute: "@0@"'.format(prefix))
58
59 bindir = join_paths(prefix, get_option('bindir'))
60 includedir = join_paths(prefix, get_option('includedir'))
61 libdir = join_paths(prefix, get_option('libdir'))
62 libexecdir = join_paths(prefix, get_option('libexecdir'))
63 mandir = join_paths(prefix, get_option('mandir'))
64 datadir = join_paths(prefix, get_option('datadir'))
65 localedir = join_paths(prefix, get_option('localedir'))
66 localstatedir = join_paths(prefix, get_option('localstatedir'))
67 sysconfdir = join_paths(prefix, get_option('sysconfdir'))
68 privlibdir = join_paths(libdir, 'pulseaudio')
69 alsadatadir = join_paths(datadir, 'pulseaudio', 'alsa-mixer')
70
71 pkgconfigdir = join_paths(libdir, 'pkgconfig')
72 pulselibexecdir = join_paths(libexecdir, 'pulse')
73 pulsesysconfdir = join_paths(sysconfdir, 'pulse')
74
75 modlibexecdir = get_option('modlibexecdir')
76 if modlibexecdir == ''
77   modlibexecdir = join_paths(libdir, 'pulse-' + pa_version_major_minor, 'modules')
78 endif
79
80 padsplibdir = get_option('padsplibdir')
81 if padsplibdir == ''
82   padsplibdir = privlibdir
83 endif
84
85 pulsedsp_location = get_option('pulsedsp-location')
86 if pulsedsp_location == ''
87   pulsedsp_location = join_paths(prefix, padsplibdir)
88 endif
89
90 systemduserunitdir = get_option('systemduserunitdir')
91 # the default value is set below
92
93 udevrulesdir = get_option('udevrulesdir')
94 if udevrulesdir == ''
95   # absolute path, otherwise meson prepends the prefix
96   udevrulesdir = '/lib/udev/rules.d'
97 endif
98
99 vapidir = join_paths(datadir, 'vala', 'vapi')
100
101 bashcompletiondir = get_option('bashcompletiondir')
102 if bashcompletiondir == ''
103   bash_completion_dep = dependency('bash-completion', required : false)
104   if bash_completion_dep.found()
105     bashcompletiondir = bash_completion_dep.get_pkgconfig_variable('completionsdir')
106   else
107     bashcompletiondir = join_paths(datadir, 'bash-completion', 'completions')
108   endif
109 endif
110
111 zshcompletiondir = get_option('zshcompletiondir')
112 if zshcompletiondir == ''
113   zshcompletiondir = join_paths(datadir, 'zsh', 'site-functions')
114 endif
115
116 # Configuration data
117
118 cc = meson.get_compiler('c')
119
120 cdata = configuration_data()
121 cdata.set_quoted('PACKAGE', 'pulseaudio')
122 cdata.set_quoted('PACKAGE_NAME', 'pulseaudio')
123 cdata.set_quoted('PACKAGE_VERSION', pa_version_str)
124 cdata.set_quoted('CANONICAL_HOST', host_machine.cpu())
125 cdata.set('PA_MAJOR', pa_version_major)
126 cdata.set('PA_MINOR', pa_version_minor)
127 cdata.set('PA_API_VERSION', pa_api_version)
128 cdata.set('PA_PROTOCOL_VERSION', pa_protocol_version)
129 cdata.set_quoted('PA_MACHINE_ID', join_paths(sysconfdir, 'machine-id'))
130 cdata.set_quoted('PA_MACHINE_ID_FALLBACK', join_paths(localstatedir, 'lib', 'dbus', 'machine-id'))
131 cdata.set_quoted('PA_SRCDIR', join_paths(meson.current_source_dir(), 'src'))
132 cdata.set_quoted('PA_BUILDDIR', meson.current_build_dir())
133 cdata.set_quoted('PA_SOEXT', '.so')
134 cdata.set_quoted('PA_DEFAULT_CONFIG_DIR', pulsesysconfdir)
135 cdata.set_quoted('PA_BINARY', join_paths(bindir, 'pulseaudio'))
136 cdata.set_quoted('PA_SYSTEM_RUNTIME_PATH', join_paths(localstatedir, 'run', 'pulse'))
137 cdata.set_quoted('PA_SYSTEM_CONFIG_PATH', join_paths(localstatedir, 'lib', 'pulse'))
138 cdata.set_quoted('PA_SYSTEM_STATE_PATH', join_paths(localstatedir, 'lib', 'pulse'))
139 cdata.set_quoted('PA_DLSEARCHPATH', modlibexecdir)
140 cdata.set_quoted('PA_SYSTEM_USER', get_option('system_user'))
141 cdata.set_quoted('PA_SYSTEM_GROUP', get_option('system_group'))
142 cdata.set_quoted('PA_ACCESS_GROUP', get_option('access_group'))
143 cdata.set_quoted('PA_CFLAGS', 'Not yet supported on meson')
144 cdata.set_quoted('PA_ALSA_PATHS_DIR', join_paths(alsadatadir, 'paths'))
145 cdata.set_quoted('PA_ALSA_PROFILE_SETS_DIR', join_paths(alsadatadir, 'profile-sets'))
146 cdata.set_quoted('DESKTOPFILEDIR', join_paths(datadir, 'applications'))
147 cdata.set_quoted('PULSE_LOCALEDIR', localedir)
148 cdata.set_quoted('GETTEXT_PACKAGE', 'pulseaudio')
149 cdata.set('ENABLE_NLS', 1)
150
151 # Platform specifics
152 # First some defaults to keep config file generation happy
153 cdata.set('HAVE_COREAUDIO', 0)
154 cdata.set('HAVE_WAVEOUT', 0)
155 # FIXME: This was not tested. Maybe some flags should better be CFLAGS,
156 # rather than ending up in the config.h file?
157 if host_machine.system() == 'darwin'
158   cdata.set('OS_IS_DARWIN', 1)
159   cdata.set('_DARWIN_C_SOURCE', '200112L') # Needed to get NSIG on Mac OS
160 elif host_machine.system() == 'windows'
161   cdata.set('OS_IS_WIN32', 1)
162   cdata.set('WIN32_LEAN_AND_MEAN', 1) # Needed to avoid including unnecessary headers on Windows
163 #elif host_machine.system() == 'solaris'
164 #  # Apparently meson has no solaris support?
165 #  # Needed to get declarations for msg_control and msg_controllen on Solaris
166 #  cdata.set('_XOPEN_SOURCE', 600)
167 #  cdata.set('__EXTENSIONS__', 1)
168 endif
169
170 # Headers
171
172 check_headers = [
173   'arpa/inet.h',
174   'byteswap.h',
175   'cpuid.h',
176   'dlfcn.h',
177   'execinfo.h',
178   'grp.h',
179   'langinfo.h',
180   'linux/sockios.h',
181   'locale.h',
182   'netdb.h',
183   'netinet/in.h',
184   'netinet/in_systm.h',
185   'netinet/ip.h',
186   'netinet/tcp.h',
187   'pcreposix.h',
188   'poll.h',
189   'pwd.h',
190   'regex.h',
191   'sched.h',
192   'stdint.h',
193   'sys/capability.h',
194   'sys/dl.h',
195   'sys/eventfd.h',
196   'sys/filio.h',
197   'sys/ioctl.h',
198   'sys/mman.h',
199   'sys/prctl.h',
200   'sys/resource.h',
201   'sys/select.h',
202   'sys/socket.h',
203   'sys/syscall.h',
204   'sys/uio.h',
205   'sys/un.h',
206   'sys/wait.h',
207   'syslog.h',
208   'valgrind/memcheck.h',
209   'xlocale.h',
210 ]
211
212 foreach h : check_headers
213   if cc.has_header(h)
214     define = 'HAVE_' + h.underscorify().to_upper()
215     cdata.set(define, 1)
216   endif
217 endforeach
218
219 # FIXME: move this to the above set
220 if cc.has_header('pthread.h')
221   cdata.set('HAVE_PTHREAD', 1)
222 endif
223
224 # Functions
225
226 check_functions = [
227   'accept4',
228   'clock_gettime',
229   'ctime_r',
230   'fchmod',
231   'fchown',
232   'fork',
233   'fstat',
234   'getaddrinfo',
235   'getgrgid_r',
236   'getgrnam_r',
237   'getpwnam_r',
238   'getpwuid_r',
239   'gettimeofday',
240   'getuid',
241   'lrintf',
242   'lstat',
243   'memfd_create',
244   'mkfifo',
245   'mlock',
246   'nanosleep',
247   'open64',
248   'paccept',
249   'pipe',
250   'pipe2',
251   'posix_fadvise',
252   'posix_madvise',
253   'posix_memalign',
254   'ppoll',
255   'readlink',
256   'setegid',
257   'seteuid',
258   'setpgid',
259   'setregid',
260   'setresgid',
261   'setresuid',
262   'setreuid',
263   'setsid',
264   'sig2str',
265   'sigaction',
266   'strerror_r',
267   'strtod_l',
268   'strtof',
269   'symlink',
270   'sysconf',
271   'uname',
272 ]
273
274 foreach f : check_functions
275   if cc.has_function(f)
276     define = 'HAVE_' + f.underscorify().to_upper()
277     cdata.set(define, 1)
278   endif
279 endforeach
280
281 if cc.has_function('SYS_memfd_create', prefix : '#include <sys/syscall.h>')
282   cdata.set('HAVE_MEMFD', 1)
283 endif
284
285 # Symbols
286
287 if cc.has_header_symbol('signal.h', 'SIGXCPU')
288   cdata.set('HAVE_SIGXCPU', 1)
289 endif
290
291 if not cc.has_header_symbol('netinet/in.h', 'INADDR_NONE')
292   if not cc.has_header_symbol('winsock2.h', 'INADDR_NONE')
293     # Define INADDR_NONE if not found (Solaris)
294     cdata.set('INADDR_NONE', '0xffffffff')
295   endif
296 endif
297
298 # Types
299
300 # FIXME: do we ever care about gid_t not being defined / smaller than an int?
301 cdata.set('GETGROUPS_T', 'gid_t')
302
303 # Include paths
304
305 configinc = include_directories('.')
306 topinc = include_directories('src')
307
308 # CFLAGS/LDFLAGS
309
310 pa_c_args = ['-DHAVE_CONFIG_H', '-D_GNU_SOURCE']
311 server_c_args = ['-D__INCLUDED_FROM_PULSE_AUDIO']
312 cdata.set('MESON_BUILD', 1)
313
314 # On ELF systems we don't want the libraries to be unloaded since we don't clean them up properly,
315 # so we request the nodelete flag to be enabled.
316 # On other systems, we don't really know how to do that, but it's welcome if somebody can tell.
317 nodelete_link_args = ['-Wl,-z,nodelete']
318
319 # Code coverage
320
321 if get_option('gcov')
322   add_project_arguments('--coverage', language: ['c', 'cpp'])
323   add_project_link_arguments('--coverage', language: ['c', 'cpp'])
324 endif
325
326 # Core Dependencies
327
328 libm_dep = cc.find_library('m', required : true)
329
330 thread_dep = dependency('threads')
331 foreach f : [
332   'pthread_getname_np',
333   'pthread_setaffinity_np',
334   'pthread_setname_np',
335 ]
336   if cc.has_function(f, dependencies : thread_dep)
337     define = 'HAVE_' + f.underscorify().to_upper()
338     cdata.set(define, 1)
339   endif
340 endforeach
341
342 cap_dep = cc.find_library('cap', required : false)
343
344 shm_dep = cc.find_library('rt', required : false)
345 if shm_dep.found()
346   cdata.set('HAVE_SHM_OPEN', 1)
347 endif
348
349 dl_dep = cc.find_library('dl', required : false)
350 if dl_dep.found()
351   cdata.set('HAVE_DLADDR', 1)
352 endif
353
354 have_iconv = false
355 if cc.has_function('iconv_open')
356   iconv_dep = dependency('', required : false)
357   have_iconv = true
358 else
359   iconv_dep = cc.find_library('iconv', required : false)
360   have_iconv = iconv_dep.found()
361 endif
362 if have_iconv
363   cdata.set('HAVE_ICONV', 1)
364   iconvconsttest = '''#include <iconv.h>
365 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
366 '''
367   if cc.compiles(iconvconsttest, dependencies : iconv_dep)
368     cdata.set('ICONV_CONST', '')
369   else
370     cdata.set('ICONV_CONST', 'const')
371   endif
372 endif
373
374 # Atomic operations
375
376 if get_option('atomic-arm-memory-barrier')
377     cdata.set('ATOMIC_ARM_MEMORY_BARRIER_ENABLED', 1)
378 endif
379
380 need_libatomic_ops = false
381
382 atomictest = '''void func() {
383   volatile int atomic = 2;
384   __sync_bool_compare_and_swap (&atomic, 2, 3);
385 }
386 '''
387
388 if cc.compiles(atomictest)
389   cdata.set('HAVE_ATOMIC_BUILTINS', 1)
390
391   newatomictest = '''void func() {
392     int c = 0;
393     __atomic_store_n(&c, 4, __ATOMIC_SEQ_CST);
394   }
395   '''
396
397   if(cc.compiles(newatomictest))
398     cdata.set('HAVE_ATOMIC_BUILTINS_MEMORY_MODEL', 1)
399   endif
400
401 elif host_machine.cpu_family() == 'arm'
402   if host_machine.system() == 'linux' and get_option('atomic-arm-linux-helpers')
403     cdata.set('ATOMIC_ARM_LINUX_HELPERS', 1)
404   else
405     armatomictest = '''void func() {
406       volatile int a=0;
407       int o=0, n=1, r;
408       asm volatile ("ldrex    %0, [%1]\n"
409       "subs  %0, %0, %2\n"
410       "strexeq %0, %3, [%1]\n"
411       : "=&r" (r)
412       : "r" (&a), "Ir" (o), "r" (n)
413       : "cc");
414       return (a==1 ? 0 : -1);
415     '''
416
417     if cc.compiles(aratomictest)
418       cdata.set('ATOMIC_ARM_INLINE_ASM', 1)
419     else
420       need_libatomic_ops = true
421     endif
422   endif # arm && !linux
423
424 elif not ['freebsd', 'netbsd'].contains(host_machine.system())
425   need_libatomic_ops = true
426 endif # !atomic helpers && !arm
427
428 if need_libatomic_ops
429   assert(cc.has_header('atomic_ops.h'), 'Need libatomic_ops')
430
431   cdata.set('AO_REQUIRE_CAS', 1)
432
433   if host_machine.system() != 'windows'
434     libatomic_ops_dep = cc.find_library('atomic_ops', required : true)
435   else
436     libatomic_ops_dep = dependency('', required: false)
437   endif
438 else
439   libatomic_ops_dep = dependency('', required: false)
440 endif
441
442 # FIXME: make sure it's >= 2.2
443 ltdl_dep = cc.find_library('ltdl', required : true)
444 # FIXME: can meson support libtool -dlopen/-dlpreopen things?
445 #        and do we still want to support this at all?
446 cdata.set('DISABLE_LIBTOOL_PRELOAD', 1)
447
448 if get_option('database') == 'tdb'
449   database_dep = dependency('tdb')
450 elif get_option('database') == 'gdbm'
451   database_dep = cc.find_library('gdbm', required : true)
452 else
453   database_dep = dependency('', required: false)
454 endif
455
456 if get_option('ipv6')
457   cdata.set('HAVE_IPV6', 1)
458 endif
459
460 if get_option('legacy-database-entry-format')
461   cdata.set('ENABLE_LEGACY_DATABASE_ENTRY_FORMAT', 1)
462 endif
463
464 if get_option('running-from-build-tree')
465   cdata.set('HAVE_RUNNING_FROM_BUILD_TREE', 1)
466 endif
467
468 alsa_dep = dependency('alsa', version : '>= 1.0.24', required : get_option('alsa'))
469 if alsa_dep.found()
470   cdata.set('HAVE_ALSA', 1)
471   cdata.set('HAVE_ALSA_UCM', 1)
472 endif
473
474 asyncns_dep = dependency('libasyncns', version : '>= 0.1', required : get_option('asyncns'))
475 if asyncns_dep.found()
476   cdata.set('HAVE_LIBASYNCNS', 1)
477 endif
478
479 dbus_dep = dependency('dbus-1', version : '>= 1.4.12', required : get_option('dbus'))
480 if dbus_dep.found()
481   cdata.set('HAVE_DBUS', 1)
482 endif
483
484 gio_dep = dependency('gio-2.0', version : '>= 2.26.0', required : get_option('gsettings'))
485 if gio_dep.found()
486   cdata.set('HAVE_GSETTINGS', 1)
487 endif
488
489 glib_dep = dependency('glib-2.0', version : '>= 2.4.0', required: get_option('glib'))
490 if glib_dep.found()
491   cdata.set('HAVE_GLIB', 1)
492 endif
493
494 gtk_dep = dependency('gtk+-3.0', required : get_option('gtk'))
495 if gtk_dep.found()
496   cdata.set('HAVE_GTK', 1)
497 endif
498
499 have_orcc = false
500 orcc_args = []
501 orc_dep = dependency('orc-0.4', version : '>= 0.4.11', required : get_option('orc'))
502 orcc = find_program('orcc', required : get_option('orc'))
503 if orc_dep.found() and orcc.found()
504   have_orcc = true
505   orcc_args = [orcc]
506   #orcc_args = [orcc, '--include', 'glib.h']
507   cdata.set('HAVE_ORC', 1)
508 else
509   cdata.set('DISABLE_ORC', 1)
510 endif
511
512 samplerate_dep = dependency('samplerate', version : '>= 0.1.0', required : get_option('samplerate'))
513 if samplerate_dep.found()
514   cdata.set('HAVE_LIBSAMPLERATE', 1)
515 endif
516
517 sndfile_dep = dependency('sndfile', version : '>= 1.0.20')
518
519 soxr_dep = dependency('soxr', version : '>= 0.1.1', required : get_option('soxr'))
520 if soxr_dep.found()
521   cdata.set('HAVE_SOXR', 1)
522 endif
523
524 libsystemd_dep = dependency('libsystemd', required : get_option('systemd'))
525 if libsystemd_dep.found()
526   cdata.set('HAVE_SYSTEMD_DAEMON', 1)
527   cdata.set('HAVE_SYSTEMD_LOGIN', 1)
528   cdata.set('HAVE_SYSTEMD_JOURNAL', 1)
529 endif
530 systemd_dep = dependency('systemd', required : get_option('systemd'))
531 if systemd_dep.found() and systemduserunitdir == ''
532   systemduserunitdir = systemd_dep.get_pkgconfig_variable('systemduserunitdir')
533 endif
534
535 x11_dep = dependency('x11-xcb', required : get_option('x11'))
536 if x11_dep.found()
537   xcb_dep  = dependency('xcb',  required : true, version : '>= 1.6')
538   ice_dep  = dependency('ice',  required : true)
539   sm_dep   = dependency('sm',   required : true)
540   xtst_dep = dependency('xtst', required : true)
541   cdata.set('HAVE_X11', 1)
542 endif
543
544 # Module dependencies
545
546 if cc.has_header('sys/soundcard.h')
547   cdata.set('HAVE_OSS_OUTPUT', 1)
548   cdata.set('HAVE_OSS_WRAPPER', 1)
549   cdata.set('PULSEDSP_LOCATION', pulsedsp_location)
550 endif
551
552 if get_option('hal-compat')
553   cdata.set('HAVE_HAL_COMPAT', 1)
554 endif
555
556 avahi_dep = dependency('avahi-client', version : '>= 0.6.0', required : get_option('avahi'), disabler : true)
557 if avahi_dep.found()
558   cdata.set('HAVE_AVAHI', 1)
559 endif
560
561 sbc_dep = dependency('sbc', version : '>= 1.0', required : false)
562 if get_option('bluez5')
563   assert(dbus_dep.found(), 'BlueZ requires D-Bus support')
564   assert(sbc_dep.found(), 'BlueZ requires SBC support')
565   cdata.set('HAVE_SBC', 1)
566   cdata.set('HAVE_BLUEZ', 1)
567   cdata.set('HAVE_BLUEZ_5', 1)
568   if get_option('bluez5-native-headset')
569     cdata.set('HAVE_BLUEZ_5_NATIVE_HEADSET', 1)
570   endif
571   if get_option('bluez5-ofono-headset')
572     cdata.set('HAVE_BLUEZ_5_OFONO_HEADSET', 1)
573   endif
574 endif
575
576 fftw_dep = dependency('fftw3f', required : get_option('fftw'))
577 if fftw_dep.found()
578   cdata.set('HAVE_FFTW', 1)
579 endif
580
581 jack_dep = dependency('jack', version : '>= 0.117.0', required : get_option('jack'))
582 if jack_dep.found()
583   cdata.set('HAVE_JACK', 1)
584 endif
585
586 lirc_dep = dependency('lirc', required : get_option('lirc'))
587 if lirc_dep.found()
588   cdata.set('HAVE_LIRC', 1)
589 endif
590
591 openssl_dep = dependency('openssl', version : '>= 0.9', required : get_option('openssl'))
592 if openssl_dep.found()
593   cdata.set('HAVE_OPENSSL', 1)
594 endif
595
596 speex_dep = dependency('speexdsp', version : '>= 1.2', required : get_option('speex'))
597 if speex_dep.found()
598   cdata.set('HAVE_SPEEX', 1)
599 endif
600
601 udev_dep = dependency('libudev', version : '>= 143', required : get_option('udev'))
602 if udev_dep.found()
603   cdata.set('HAVE_UDEV', 1)
604 endif
605
606 webrtc_dep = dependency('webrtc-audio-processing', version : '>= 0.2', required : get_option('webrtc-aec'))
607 if webrtc_dep.found()
608   cdata.set('HAVE_WEBRTC', 1)
609 endif
610
611 # These are required for the CMake file generation
612 cdata.set('PA_LIBDIR', libdir)
613 cdata.set('PA_INCDIR', includedir)
614 if glib_dep.found()
615   cdata.set('HAVE_GLIB20', 1) # to match the AM_CONDITIONAL for CMake file generation
616 endif
617
618 # Test dependencies
619
620 check_dep = dependency('check', version : '>= 0.9.10', required : get_option('tests'))
621
622 # Now generate config.h from everything above
623 configure_file(output : 'config.h', configuration : cdata)
624
625 # pkg-config files
626
627 pc_cdata = configuration_data()
628
629 pc_cdata.set('prefix', prefix)
630 pc_cdata.set('exec_prefix', prefix)
631 pc_cdata.set('libdir', libdir)
632 pc_cdata.set('includedir', includedir)
633 pc_cdata.set('modlibexecdir', modlibexecdir)
634 pc_cdata.set('PACKAGE_VERSION', pa_version_str)
635 pc_cdata.set('PA_MAJORMINOR', pa_version_major_minor)
636 # FIXME: the line below is wrong. Currently the meson thread dep lacks documentation,
637 # and doesn't allow introspection, ie. none of get_pkgconfig_variable() or
638 # get_configtool_variable() work with it, so we have no way to get this flag right,
639 # unless we do all the work ourselves. See current work in glib, also meson #553.
640 pc_cdata.set('PTHREAD_LIBS', '-pthread')
641
642 pc_files = [
643   'libpulse.pc',
644   'libpulse-simple.pc',
645 ]
646
647 if glib_dep.found()
648   pc_files += 'libpulse-mainloop-glib.pc'
649 endif
650
651 foreach file : pc_files
652   configure_file(
653     input : file + '.in',
654     output : file,
655     configuration : pc_cdata,
656     install_dir : pkgconfigdir)
657 endforeach
658
659 # CMake files
660
661 m4 = find_program('m4', required: true)
662
663 cmakedir = join_paths(libdir, 'cmake', 'PulseAudio')
664
665 cmake_template_file = configure_file(
666   input : 'PulseAudioConfig.cmake.in',
667   output : 'PulseAudioConfig.cmake.tmp',
668   configuration: cdata,
669 )
670
671 custom_target('PulseAudioConfig.cmake',
672   input : cmake_template_file,
673   output : 'PulseAudioConfig.cmake',
674   capture : true,
675   command : [m4, '@INPUT@'],
676   build_by_default : true,
677   install : true,
678   install_dir : cmakedir,
679 )
680
681 configure_file(
682   input : 'PulseAudioConfigVersion.cmake.in',
683   output : 'PulseAudioConfigVersion.cmake',
684   configuration: cdata,
685   install : true,
686   install_dir : cmakedir,
687 )
688
689 # Subdirs
690
691 subdir('po')
692 if get_option('man')
693   subdir('man')
694 endif
695 subdir('shell-completion/bash')
696 subdir('shell-completion/zsh')
697 subdir('src')
698 subdir('vala')
699
700 ############################################################
701
702 # Final summary
703
704 summary = [
705   '',
706   '---{ @0@ @1@ }---'.format(meson.project_name(), meson.project_version()),
707   '',
708   'prefix:                        @0@'.format(prefix),
709   'bindir:                        @0@'.format(bindir),
710   'libdir:                        @0@'.format(libdir),
711   'libexecdir:                    @0@'.format(libexecdir),
712   'mandir:                        @0@'.format(mandir),
713   'datadir:                       @0@'.format(datadir),
714   'sysconfdir:                    @0@'.format(sysconfdir),
715   'localstatedir:                 @0@'.format(localstatedir),
716   'modlibexecdir:                 @0@'.format(modlibexecdir),
717   'System Runtime Path:           @0@'.format(cdata.get_unquoted('PA_SYSTEM_RUNTIME_PATH')),
718   'System State Path:             @0@'.format(cdata.get_unquoted('PA_SYSTEM_STATE_PATH')),
719   'System Config Path:            @0@'.format(cdata.get_unquoted('PA_SYSTEM_CONFIG_PATH')),
720   'Bash completions directory:    @0@'.format(bashcompletiondir),
721   'Zsh completions directory:     @0@'.format(zshcompletiondir),
722   'Compiler:                      @0@ @1@'.format(cc.get_id(), cc.version()),
723 #  'CFLAGS:                        @0@'.format(${CFLAGS}),
724 #  'CPPFLAGS:                      @0@'.format(${CPPFLAGS}),
725 #  'LIBS:                          @0@'.format(${LIBS}),
726   '',
727   'Enable memfd shared memory:    @0@'.format(cdata.has('HAVE_MEMFD')),
728   'Enable X11:                    @0@'.format(x11_dep.found()),
729 #  'Enable OSS Output:             @0@'.format(${ENABLE_OSS_OUTPUT}),
730 #  'Enable OSS Wrapper:            @0@'.format(${ENABLE_OSS_WRAPPER}),
731 #  'Enable EsounD:                 @0@'.format(${ENABLE_ESOUND}),
732   'Enable Alsa:                   @0@'.format(alsa_dep.found()),
733 #  'Enable CoreAudio:              @0@'.format(${ENABLE_COREAUDIO}),
734 #  'Enable Solaris:                @0@'.format(${ENABLE_SOLARIS}),
735 #  'Enable WaveOut:                @0@'.format(${ENABLE_WAVEOUT}),
736   'Enable GLib 2:                 @0@'.format(glib_dep.found()),
737 #  'Enable GConf:                  @0@'.format(${ENABLE_GCONF}),
738   'Enable GSettings:              @0@'.format(gio_dep.found()),
739   'Enable Gtk+ 3:                 @0@'.format(gtk_dep.found()),
740   'Enable Avahi:                  @0@'.format(avahi_dep.found()),
741   'Enable Jack:                   @0@'.format(jack_dep.found()),
742   'Enable Async DNS:              @0@'.format(asyncns_dep.found()),
743   'Enable LIRC:                   @0@'.format(lirc_dep.found()),
744   'Enable D-Bus:                  @0@'.format(dbus_dep.found()),
745   '  Enable BlueZ 5:              @0@'.format(get_option('bluez5')),
746   '    Enable native headsets:    @0@'.format(get_option('bluez5-native-headset')),
747   '    Enable  ofono headsets:    @0@'.format(get_option('bluez5-ofono-headset')),
748   'Enable udev:                   @0@'.format(udev_dep.found()),
749   '  Enable HAL->udev compat:     @0@'.format(get_option('hal-compat')),
750   'Enable systemd:                @0@'.format(libsystemd_dep.found()),
751 #  'Enable TCP Wrappers:           @0@'.format(${ENABLE_TCPWRAP}),
752   'Enable libsamplerate:          @0@'.format(samplerate_dep.found()),
753   'Enable IPv6:                   @0@'.format(get_option('ipv6')),
754   'Enable OpenSSL (for Airtunes): @0@'.format(openssl_dep.found()),
755   'Enable FFTW:                   @0@'.format(fftw_dep.found()),
756   'Enable ORC:                    @0@'.format(have_orcc),
757   'Enable Adrian echo canceller:  @0@'.format(get_option('adrian-aec')),
758   'Enable Speex (resampler, AEC): @0@'.format(speex_dep.found()),
759   'Enable SoXR (resampler):       @0@'.format(soxr_dep.found()),
760   'Enable WebRTC echo canceller:  @0@'.format(webrtc_dep.found()),
761   'Enable Gcov coverage:          @0@'.format(get_option('gcov')),
762   'Enable man pages:              @0@'.format(get_option('man')),
763   'Enable unit tests:             @0@'.format(get_option('tests')),
764   '',
765   'Database:                      @0@'.format(get_option('database')),
766   'Legacy Database Entry Support: @0@'.format(get_option('legacy-database-entry-format')),
767   'Running from build tree:       @0@'.format(get_option('running-from-build-tree')),
768   'System User:                   @0@'.format(cdata.get_unquoted('PA_SYSTEM_USER')),
769   'System Group:                  @0@'.format(cdata.get_unquoted('PA_SYSTEM_GROUP')),
770   'Access Group:                  @0@'.format(cdata.get_unquoted('PA_ACCESS_GROUP')),
771 #  'Enable per-user EsounD socket: @0@'.format(${ENABLE_PER_USER_ESOUND_SOCKET}),
772 #  'Force preopen:                 @0@'.format(${FORCE_PREOPEN}),
773 #  'Preopened modules:             @0@'.format(${PREOPEN_MODS}),
774 ]
775
776 message('\n    '.join(summary))
777
778 # Sanity checks
779
780 if not speex_dep.found() and not webrtc_dep.found() and not get_option('adrian-aec')
781   error('At least one echo canceller implementation must be available!')
782 endif
783
784 if samplerate_dep.found()
785   warning('Support for libsamplerate is DEPRECATED')
786 endif
787
788 if host_machine.system() != 'windows'
789   if not dbus_dep.found()
790     message = [
791       'You do not have D-Bus support enabled. It is strongly recommended',
792       'that you enable D-Bus support if your platform supports it.',
793       'Many parts of PulseAudio use D-Bus, from ConsoleKit interaction',
794       'to the Device Reservation Protocol to speak to JACK, Bluetooth',
795       'support and even a native control protocol for communicating and',
796       'controlling the PulseAudio daemon itself.',
797     ]
798     warning('\n' + '\n'.join(message))
799   endif
800   if not udev_dep.found()
801     message = [
802       'You do not have udev support enabled. It is strongly recommended',
803       'that you enable udev support if your platform supports it as it is',
804       'the primary method used to detect hardware audio devices (on Linux)',
805       'and is thus a critical part of PulseAudio on that platform.',
806     ]
807     warning('\n' + '\n'.join(message))
808   endif
809   if not speex_dep.found()
810     message = [
811       'You do not have speex support enabled. It is strongly recommended',
812       'that you enable speex support if your platform supports it as it is',
813       'the primary method used for audio resampling and is thus a critical',
814       'part of PulseAudio on that platform.',
815     ]
816     warning('\n' + '\n'.join(message))
817   endif
818 endif