mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
meson: Add optional IPv6 support
Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
This commit is contained in:
parent
6eba2f823d
commit
b9a3437a5d
2 changed files with 7 additions and 0 deletions
|
|
@ -209,6 +209,10 @@ elif get_option('database') == 'gdbm'
|
|||
database_dep = cc.find_library('gdbm', required : true)
|
||||
endif
|
||||
|
||||
if get_option('ipv6')
|
||||
cdata.set('HAVE_IPV6', 1)
|
||||
endif
|
||||
|
||||
atomictest = '''void func() {
|
||||
volatile int atomic = 2;
|
||||
__sync_bool_compare_and_swap (&atomic, 2, 3);
|
||||
|
|
|
|||
|
|
@ -53,6 +53,9 @@ option('gtk',
|
|||
option('hal-compat',
|
||||
type : 'boolean',
|
||||
description : 'Optional HAL->udev transition compatibility support (needs udev)')
|
||||
option('ipv6',
|
||||
type : 'boolean',
|
||||
description : 'Optional IPv6 support')
|
||||
option('jack',
|
||||
type : 'feature', value : 'auto',
|
||||
description : 'Optional JACK support')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue