meson: Fix some config generation warnings
[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.47.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 apiversion = '1.0'
25 soversion = 0
26 # FIXME: this doesn't actually do what we want it to
27 # maintaining compatibility with the previous libtool versioning
28 # current = minor * 100 + micro
29 libversion = '@0@.@1@.0'.format(soversion, pa_version_minor.to_int() * 100 + pa_version_micro.to_int())
30
31 # The ABI-stable GLib adapter for client applications.
32 # For the version x:y:z always will hold y=z.
33 libpulse_mainloop_glib_version = '0.5.0'
34
35 # Paths
36
37 prefix = get_option('prefix')
38 assert(prefix.startswith('/'), 'Prefix is not absolute: "@0@"'.format(prefix))
39
40 bindir = join_paths(prefix, get_option('bindir'))
41 libdir = join_paths(prefix, get_option('libdir'))
42 libexecdir = join_paths(prefix, get_option('libexecdir'))
43 datadir = join_paths(prefix, get_option('datadir'))
44 localstatedir = join_paths(prefix, get_option('localstatedir'))
45 sysconfdir = join_paths(prefix, get_option('sysconfdir'))
46
47 pulselibexecdir = join_paths(libexecdir, 'pulse')
48 pulsesysconfdir = join_paths(sysconfdir, 'pulse')
49
50 pulsedspdir = get_option('pulsedspdir')
51 if pulsedspdir == ''
52   join_paths(libdir, 'pulseaudio')
53 endif
54
55 # Configuration data
56
57 cc = meson.get_compiler('c')
58
59 cdata = configuration_data()
60 cdata.set_quoted('PACKAGE', 'pulseaudio')
61 cdata.set_quoted('PACKAGE_NAME', 'pulseaudio')
62 cdata.set_quoted('PACKAGE_VERSION', pa_version_str)
63 cdata.set_quoted('CANONICAL_HOST', host_machine.cpu())
64 cdata.set('PA_MAJOR', pa_version_major)
65 cdata.set('PA_MINOR', pa_version_minor)
66 cdata.set('PA_API_VERSION', pa_api_version)
67 cdata.set('PA_PROTOCOL_VERSION', pa_protocol_version)
68 cdata.set_quoted('PA_MACHINE_ID', join_paths(sysconfdir, 'machine-id'))
69 cdata.set_quoted('PA_MACHINE_ID_FALLBACK', join_paths(localstatedir, 'lib', 'dbus', 'machine-id'))
70 cdata.set_quoted('PA_SRCDIR', join_paths(meson.current_source_dir(), 'src'))
71 cdata.set_quoted('PA_BUILDDIR', meson.current_build_dir())
72 cdata.set_quoted('PA_SOEXT', '.so')
73 cdata.set_quoted('PA_DEFAULT_CONFIG_DIR', pulsesysconfdir)
74 cdata.set_quoted('PA_BINARY', join_paths(bindir, 'pulseaudio'))
75 cdata.set_quoted('PA_SYSTEM_RUNTIME_PATH', join_paths(localstatedir, 'run', 'pulse'))
76 cdata.set_quoted('PA_SYSTEM_CONFIG_PATH', join_paths(localstatedir, 'lib', 'pulse'))
77 cdata.set_quoted('PA_SYSTEM_STATE_PATH', join_paths(localstatedir, 'lib', 'pulse'))
78 cdata.set_quoted('PA_DLSEARCHPATH', join_paths(libdir, 'pulse-' + pa_version_major_minor, 'modules'))
79 cdata.set_quoted('PA_SYSTEM_USER', get_option('system_user'))
80 cdata.set_quoted('PA_SYSTEM_GROUP', get_option('system_group'))
81 cdata.set_quoted('PA_ACCESS_GROUP', get_option('access_group'))
82 cdata.set_quoted('PA_CFLAGS', 'Not yet supported on meson')
83 cdata.set_quoted('PA_ALSA_PATHS_DIR', join_paths(datadir, 'pulseaudio', 'alsa-mixer', 'paths'))
84 cdata.set_quoted('PA_ALSA_PROFILE_SETS_DIR', join_paths(datadir, 'pulseaudio', 'alsa-mixer', 'profile-sets'))
85 cdata.set_quoted('DESKTOPFILEDIR', join_paths(datadir, 'applications'))
86
87 # Platform specifics
88 # First some defaults to keep config file generation happy
89 cdata.set('HAVE_COREAUDIO', 0)
90 cdata.set('HAVE_WAVEOUT', 0)
91 # FIXME: This was not tested. Maybe some flags should better be CFLAGS,
92 # rather than ending up in the config.h file?
93 if host_machine.system() == 'darwin'
94   cdata.set('OS_IS_DARWIN', 1)
95   cdata.set('_DARWIN_C_SOURCE', '200112L') # Needed to get NSIG on Mac OS
96 elif host_machine.system() == 'windows'
97   cdata.set('OS_IS_WIN32', 1)
98   cdata.set('WIN32_LEAN_AND_MEAN', 1) # Needed to avoid including unnecessary headers on Windows
99 #elif host_machine.system() == 'solaris'
100 #  # Apparently meson has no solaris support?
101 #  # Needed to get declarations for msg_control and msg_controllen on Solaris
102 #  cdata.set('_XOPEN_SOURCE', 600)
103 #  cdata.set('__EXTENSIONS__', 1)
104 endif
105
106 # Headers
107
108 check_headers = [
109   'arpa/inet.h',
110   'cpuid.h',
111   'execinfo.h',
112   'grp.h',
113   'langinfo.h',
114   'locale.h',
115   'netdb.h',
116   'netinet/in.h',
117   'netinet/in_systm.h',
118   'netinet/ip.h',
119   'netinet/tcp.h',
120   'pcreposix.h',
121   'poll.h',
122   'pwd.h',
123   'regex.h',
124   'sched.h',
125   'sys/capability.h',
126   'sys/ioctl.h',
127   'sys/mman.h',
128   'sys/prctl.h',
129   'sys/resource.h',
130   'sys/select.h',
131   'sys/socket.h',
132   'sys/wait.h',
133   'valgrind/memcheck.h',
134   'xlocale.h',
135 ]
136
137 foreach h : check_headers
138   if cc.has_header(h)
139     define = 'HAVE_' + h.underscorify().to_upper()
140     cdata.set(define, 1)
141   endif
142 endforeach
143
144 # FIXME: move this to the above set
145 if cc.has_header('pthread.h')
146   cdata.set('HAVE_PTHREAD', 1)
147 endif
148
149 # FIXME: move this to the above set
150 if cc.has_header('sys/un.h')
151   cdata.set('HAVE_AF_UNIX', 1)
152 endif
153
154 # Functions
155
156 check_functions = [
157   'accept4',
158   'clock_gettime',
159   'fchmod',
160   'fchown',
161   'fork',
162   'fstat',
163   'getaddrinfo',
164   'getgrgid_r',
165   'getpwnam_r',
166   'gettimeofday',
167   'getuid',
168   'lstat',
169   'memfd_create',
170   'mkfifo',
171   'mlock',
172   'nanosleep',
173   'paccept',
174   'pipe',
175   'pipe2',
176   'posix_madvise',
177   'readlink',
178   'setegid',
179   'seteuid',
180   'setregid',
181   'setreuid',
182   'setresgid',
183   'setresuid',
184   'setsid',
185   'sig2str',
186   'sigaction',
187   'strtod_l',
188   'symlink',
189   'sysconf',
190   'uname',
191 ]
192
193 foreach f : check_functions
194   if cc.has_function(f)
195     define = 'HAVE_' + f.underscorify().to_upper()
196     cdata.set(define, 1)
197   endif
198 endforeach
199
200 shm_dep = cc.find_library('rt', required : false)
201 if shm_dep.found()
202   cdata.set('HAVE_SHM_OPEN', 1)
203 endif
204
205 if cc.has_function('SYS_memfd_create', prefix : '#include <sys/syscall.h>')
206   cdata.set('HAVE_MEMFD', 1)
207 endif
208
209 # Types
210
211 # FIXME: do we ever care about gid_t not being defined / smaller than an int?
212 cdata.set('GETGROUPS_T', 'gid_t')
213
214 # Include paths
215
216 configinc = include_directories('.')
217 topinc = include_directories('src')
218
219 # CFLAGS
220
221 pa_c_args = ['-DHAVE_CONFIG_H', '-D_GNU_SOURCE']
222 server_c_args = ['-D__INCLUDED_FROM_PULSE_AUDIO']
223 cdata.set('MESON_BUILD', 1)
224
225 # Core Dependencies
226
227 libm_dep = cc.find_library('m', required : true)
228 thread_dep = dependency('threads')
229 cap_dep = cc.find_library('cap', required : false)
230
231 atomictest = '''void func() {
232   volatile int atomic = 2;
233   __sync_bool_compare_and_swap (&atomic, 2, 3);
234 }
235 '''
236 if cc.compiles(atomictest)
237   cdata.set('HAVE_ATOMIC_BUILTINS', true)
238 else
239   # FIXME: check if we need libatomic_ops
240 endif
241
242 # FIXME: make sure it's >= 2.2
243 ltdl_dep = cc.find_library('ltdl', required : true)
244 # FIXME: can meson support libtool -dlopen/-dlpreopen things?
245 #        and do we still want to support this at all?
246 cdata.set('DISABLE_LIBTOOL_PRELOAD', 1)
247
248 if get_option('database') == 'tdb'
249   database_dep = dependency('tdb')
250 elif get_option('database') == 'gdbm'
251   database_dep = cc.find_library('gdbm', required : true)
252 endif
253
254 if get_option('ipv6')
255   cdata.set('HAVE_IPV6', 1)
256 endif
257
258 if get_option('legacy-database-entry-format')
259   cdata.set('ENABLE_LEGACY_DATABASE_ENTRY_FORMAT', 1)
260 endif
261
262 alsa_dep = dependency('alsa', version : '>= 1.0.24', required : get_option('alsa'))
263 if alsa_dep.found()
264   cdata.set('HAVE_ALSA', 1)
265   cdata.set('HAVE_ALSA_UCM', 1)
266 endif
267
268 asyncns_dep = dependency('libasyncns', version : '>= 0.1', required : get_option('asyncns'))
269 if asyncns_dep.found()
270   cdata.set('HAVE_LIBASYNCNS', 1)
271 endif
272
273 dbus_dep = dependency('dbus-1', version : '>= 1.4.12', required : get_option('dbus'))
274 if dbus_dep.found()
275   cdata.set('HAVE_DBUS', 1)
276 endif
277
278 gio_dep = dependency('gio-2.0', version : '>= 2.26.0', required : get_option('gsettings'))
279 if gio_dep.found()
280   cdata.set('HAVE_GSETTINGS', 1)
281 endif
282
283 glib_dep = dependency('glib-2.0', version : '>= 2.4.0', required: get_option('glib'))
284 if glib_dep.found()
285   cdata.set('HAVE_GLIB', 1)
286 endif
287
288 gtk_dep = dependency('gtk+-3.0', required : get_option('gtk'))
289 if gtk_dep.found()
290   cdata.set('HAVE_GTK', 1)
291 endif
292
293 samplerate_dep = dependency('samplerate', version : '>= 0.1.0', required : get_option('samplerate'))
294 if samplerate_dep.found()
295   cdata.set('HAVE_LIBSAMPLERATE', 1)
296 endif
297
298 sndfile_dep = dependency('sndfile', version : '>= 1.0.20')
299
300 soxr_dep = dependency('soxr', version : '>= 0.1.1', required : get_option('soxr'))
301 if soxr_dep.found()
302   cdata.set('HAVE_SOXR', 1)
303 endif
304
305 systemd_dep = dependency('libsystemd', required : get_option('systemd'))
306 if systemd_dep.found()
307   cdata.set('HAVE_SYSTEMD_DAEMON', 1)
308   cdata.set('HAVE_SYSTEMD_LOGIN', 1)
309   cdata.set('HAVE_SYSTEMD_JOURNAL', 1)
310 endif
311
312 x11_dep = dependency('x11-xcb', required : get_option('x11'))
313 if x11_dep.found()
314   xcb_dep  = dependency('xcb',  required : true, version : '>= 1.6')
315   ice_dep  = dependency('ice',  required : true)
316   sm_dep   = dependency('sm',   required : true)
317   xtst_dep = dependency('xtst', required : true)
318   cdata.set('HAVE_X11', 1)
319 endif
320
321 # FIXME: support ORC
322 cdata.set('DISABLE_ORC', 1)
323
324 # Module dependencies
325
326 if cc.has_header('sys/soundcard.h')
327   cdata.set('HAVE_OSS_OUTPUT', 1)
328   cdata.set('HAVE_OSS_WRAPPER', 1)
329   cdata.set_quoted('PULSEDSP_LOCATION', pulsedspdir)
330 endif
331
332 if get_option('hal-compat')
333   cdata.set('HAVE_HAL_COMPAT', 1)
334 endif
335
336 avahi_dep = dependency('avahi-client', version : '>= 0.6.0', required : get_option('avahi'))
337 if avahi_dep.found()
338   cdata.set('HAVE_AVAHI', 1)
339 endif
340
341 bluez_dep = dependency('bluez', version : '>= 5.0', required : get_option('bluez5'))
342 sbc_dep = dependency('sbc', version : '>= 1.0', required : false)
343 if bluez_dep.found()
344   assert(dbus_dep.found(), 'BlueZ requires D-Bus support')
345   assert(sbc_dep.found(), 'BlueZ requires SBC support')
346   cdata.set('HAVE_SBC', 1)
347   cdata.set('HAVE_BLUEZ', 1)
348   cdata.set('HAVE_BLUEZ_5', 1)
349   if get_option('bluez5-native-headset')
350     cdata.set('HAVE_BLUEZ_5_NATIVE_HEADSET', 1)
351   endif
352   if get_option('bluez5-ofono-headset')
353     cdata.set('HAVE_BLUEZ_5_OFONO_HEADSET', 1)
354   endif
355 endif
356
357 fftw_dep = dependency('fftw3f', required : get_option('fftw'))
358 if fftw_dep.found()
359   cdata.set('HAVE_FFTW', 1)
360 endif
361
362 jack_dep = dependency('jack', version : '>= 0.117.0', required : get_option('jack'))
363 if jack_dep.found()
364   cdata.set('HAVE_JACK', 1)
365 endif
366
367 lirc_dep = dependency('lirc', required : get_option('lirc'))
368 if lirc_dep.found()
369   cdata.set('HAVE_LIRC', 1)
370 endif
371
372 openssl_dep = dependency('openssl', version : '>= 0.9', required : get_option('openssl'))
373 if openssl_dep.found()
374   cdata.set('HAVE_OPENSSL', 1)
375 endif
376
377 speex_dep = dependency('speexdsp', version : '>= 1.2', required : get_option('speex'))
378 if speex_dep.found()
379   cdata.set('HAVE_SPEEX', 1)
380 endif
381
382 udev_dep = dependency('libudev', version : '>= 143', required : get_option('udev'))
383 if udev_dep.found()
384   cdata.set('HAVE_UDEV', 1)
385 endif
386
387 webrtc_dep = dependency('webrtc-audio-processing', version : '>= 0.2', required : get_option('webrtc-aec'))
388 if webrtc_dep.found()
389   cdata.set('HAVE_WEBRTC', 1)
390 endif
391
392 # Now generate config.h from everything above
393 configure_file(output : 'config.h', configuration : cdata)
394
395 subdir('man')
396 subdir('src')
397
398 ############################################################
399
400 # Final summary
401
402 summary = [
403   '',
404   '---{ @0@ @1@ }---'.format(meson.project_name(), meson.project_version()),
405   '',
406   'prefix:                        @0@'.format(prefix),
407   'bindir:                        @0@'.format(bindir),
408   'libdir:                        @0@'.format(libdir),
409   'libexecdir:                    @0@'.format(libexecdir),
410   'datadir:                       @0@'.format(datadir),
411   'sysconfdir:                    @0@'.format(sysconfdir),
412   'localstatedir:                 @0@'.format(localstatedir),
413 #  'modlibexecdir:                 @0@'.format(${modlibexecdir}),
414   'System Runtime Path:           @0@'.format(cdata.get_unquoted('PA_SYSTEM_RUNTIME_PATH')),
415   'System State Path:             @0@'.format(cdata.get_unquoted('PA_SYSTEM_STATE_PATH')),
416   'System Config Path:            @0@'.format(cdata.get_unquoted('PA_SYSTEM_CONFIG_PATH')),
417 #  'Zsh completions directory:     @0@'.format(${zshcompletiondir}),
418 #  'Bash completions directory:    @0@'.format(${bashcompletiondir}),
419   'Compiler:                      @0@ @1@'.format(cc.get_id(), cc.version()),
420 #  'CFLAGS:                        @0@'.format(${CFLAGS}),
421 #  'CPPFLAGS:                      @0@'.format(${CPPFLAGS}),
422 #  'LIBS:                          @0@'.format(${LIBS}),
423   '',
424   'Enable memfd shared memory:    @0@'.format(cdata.has('HAVE_MEMFD')),
425   'Enable X11:                    @0@'.format(x11_dep.found()),
426 #  'Enable OSS Output:             @0@'.format(${ENABLE_OSS_OUTPUT}),
427 #  'Enable OSS Wrapper:            @0@'.format(${ENABLE_OSS_WRAPPER}),
428 #  'Enable EsounD:                 @0@'.format(${ENABLE_ESOUND}),
429   'Enable Alsa:                   @0@'.format(alsa_dep.found()),
430 #  'Enable CoreAudio:              @0@'.format(${ENABLE_COREAUDIO}),
431 #  'Enable Solaris:                @0@'.format(${ENABLE_SOLARIS}),
432 #  'Enable WaveOut:                @0@'.format(${ENABLE_WAVEOUT}),
433   'Enable GLib 2:                 @0@'.format(glib_dep.found()),
434 #  'Enable GConf:                  @0@'.format(${ENABLE_GCONF}),
435   'Enable GSettings:              @0@'.format(gio_dep.found()),
436   'Enable Gtk+ 3:                 @0@'.format(gtk_dep.found()),
437   'Enable Avahi:                  @0@'.format(avahi_dep.found()),
438   'Enable Jack:                   @0@'.format(jack_dep.found()),
439   'Enable Async DNS:              @0@'.format(asyncns_dep.found()),
440   'Enable LIRC:                   @0@'.format(lirc_dep.found()),
441   'Enable D-Bus:                  @0@'.format(dbus_dep.found()),
442   '  Enable BlueZ 5:              @0@'.format(bluez_dep.found()),
443   '    Enable native headsets:    @0@'.format(get_option('bluez5-native-headset')),
444   '    Enable  ofono headsets:    @0@'.format(get_option('bluez5-ofono-headset')),
445   'Enable udev:                   @0@'.format(udev_dep.found()),
446   '  Enable HAL->udev compat:     @0@'.format(get_option('hal-compat')),
447   'Enable systemd:                @0@'.format(systemd_dep.found()),
448 #  'Enable TCP Wrappers:           @0@'.format(${ENABLE_TCPWRAP}),
449   'Enable libsamplerate:          @0@'.format(samplerate_dep.found()),
450   'Enable IPv6:                   @0@'.format(get_option('ipv6')),
451   'Enable OpenSSL (for Airtunes): @0@'.format(openssl_dep.found()),
452   'Enable FFTW:                   @0@'.format(fftw_dep.found()),
453 #  'Enable orc:                    @0@'.format(${ENABLE_ORC}),
454   'Enable Adrian echo canceller:  @0@'.format(get_option('adrian-aec')),
455   'Enable Speex (resampler, AEC): @0@'.format(speex_dep.found()),
456   'Enable SoXR (resampler):       @0@'.format(soxr_dep.found()),
457   'Enable WebRTC echo canceller:  @0@'.format(webrtc_dep.found()),
458 #  'Enable gcov coverage:          @0@'.format(${ENABLE_GCOV}),
459 #  'Enable unit tests:             @0@'.format(${ENABLE_TESTS}),
460   '',
461   'Database:                      @0@'.format(get_option('database')),
462   'Legacy Database Entry Support: @0@'.format(get_option('legacy-database-entry-format')),
463   'System User:                   @0@'.format(cdata.get_unquoted('PA_SYSTEM_USER')),
464   'System Group:                  @0@'.format(cdata.get_unquoted('PA_SYSTEM_GROUP')),
465   'Access Group:                  @0@'.format(cdata.get_unquoted('PA_ACCESS_GROUP')),
466 #  'Enable per-user EsounD socket: @0@'.format(${ENABLE_PER_USER_ESOUND_SOCKET}),
467 #  'Force preopen:                 @0@'.format(${FORCE_PREOPEN}),
468 #  'Preopened modules:             @0@'.format(${PREOPEN_MODS}),
469 ]
470
471 message('\n    '.join(summary))
472
473 # Sanity checks
474
475 if not speex_dep.found() and not webrtc_dep.found() and not get_option('adrian-aec')
476   error('At least one echo canceller implementation must be available!')
477 endif
478
479 if samplerate_dep.found()
480   warning('Support for libsamplerate is DEPRECATED')
481 endif
482
483 if host_machine.system() != 'windows'
484   if not dbus_dep.found()
485     message = [
486       'You do not have D-Bus support enabled. It is strongly recommended',
487       'that you enable D-Bus support if your platform supports it.',
488       'Many parts of PulseAudio use D-Bus, from ConsoleKit interaction',
489       'to the Device Reservation Protocol to speak to JACK, Bluetooth',
490       'support and even a native control protocol for communicating and',
491       'controlling the PulseAudio daemon itself.',
492     ]
493     warning('\n' + '\n'.join(message))
494   endif
495   if not udev_dep.found()
496     message = [
497       'You do not have udev support enabled. It is strongly recommended',
498       'that you enable udev support if your platform supports it as it is',
499       'the primary method used to detect hardware audio devices (on Linux)',
500       'and is thus a critical part of PulseAudio on that platform.',
501     ]
502     warning('\n' + '\n'.join(message))
503   endif
504   if not speex_dep.found()
505     message = [
506       'You do not have speex support enabled. It is strongly recommended',
507       'that you enable speex support if your platform supports it as it is',
508       'the primary method used for audio resampling and is thus a critical',
509       'part of PulseAudio on that platform.',
510     ]
511     warning('\n' + '\n'.join(message))
512   endif
513 endif