• Home
  • Raw
  • Download

Lines Matching refs:get_option

56 prefix = get_option('prefix')
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'))
70 alsadatadir = get_option('alsadatadir')
79 modlibexecdir = get_option('modlibexecdir')
84 padsplibdir = get_option('padsplibdir')
89 pulsedsp_location = get_option('pulsedsp-location')
94 systemduserunitdir = get_option('systemduserunitdir')
97 udevrulesdir = get_option('udevrulesdir')
105 bashcompletiondir = get_option('bashcompletiondir')
115 zshcompletiondir = get_option('zshcompletiondir')
143 cdata.set_quoted('PA_SYSTEM_USER', get_option('system_user'))
144 cdata.set_quoted('PA_SYSTEM_GROUP', get_option('system_group'))
145 cdata.set_quoted('PA_ACCESS_GROUP', get_option('access_group'))
359 if get_option('gcov')
414 if get_option('atomic-arm-memory-barrier')
440 if host_machine.system() == 'linux' and get_option('atomic-arm-linux-helpers')
513 if get_option('database') == 'tdb'
515 elif get_option('database') == 'gdbm'
521 if get_option('ipv6')
525 if get_option('legacy-database-entry-format')
529 if get_option('stream-restore-clear-old-devices')
533 if get_option('running-from-build-tree')
537 alsa_dep = dependency('alsa', version : '>= 1.0.24', required : get_option('alsa'))
543 asyncns_dep = dependency('libasyncns', version : '>= 0.1', required : get_option('asyncns'))
548 dbus_dep = dependency('dbus-1', version : '>= 1.4.12', required : get_option('dbus'))
553 gio_dep = dependency('gio-2.0', version : '>= 2.26.0', required : get_option('gsettings'))
558 glib_dep = dependency('glib-2.0', version : '>= 2.4.0', required: get_option('glib'))
563 gtk_dep = dependency('gtk+-3.0', required : get_option('gtk'))
570 orc_dep = dependency('orc-0.4', version : '>= 0.4.11', required : get_option('orc'))
571 orcc = find_program('orcc', required : get_option('orc'))
581 samplerate_dep = dependency('samplerate', version : '>= 0.1.0', required : get_option('samplerate'))
588 soxr_dep = dependency('soxr', version : '>= 0.1.1', required : get_option('soxr'))
593 libsystemd_dep = dependency('libsystemd', required : get_option('systemd'))
599 systemd_dep = dependency('systemd', required : get_option('systemd'))
604 x11_dep = dependency('x11-xcb', required : get_option('x11'))
621 if get_option('hal-compat')
625 avahi_dep = dependency('avahi-client', version : '>= 0.6.0', required : get_option('avahi'), disabl…
631 if get_option('bluez5')
637 if get_option('bluez5-native-headset')
640 if get_option('bluez5-ofono-headset')
645 fftw_dep = dependency('fftw3f', required : get_option('fftw'))
650 jack_dep = dependency('jack', version : '>= 0.117.0', required : get_option('jack'))
655 lirc_dep = dependency('lirc', required : get_option('lirc'))
660 openssl_dep = dependency('openssl', version : '>= 0.9', required : get_option('openssl'))
665 speex_dep = dependency('speexdsp', version : '>= 1.2', required : get_option('speex'))
670 udev_dep = dependency('libudev', version : '>= 143', required : get_option('udev'))
675 webrtc_dep = dependency('webrtc-audio-processing', version : '>= 0.2', required : get_option('webrt…
680 gst_dep = dependency('gstreamer-1.0', version : '>= 1.14', required : get_option('gstreamer'))
681 gstapp_dep = dependency('gstreamer-app-1.0', required : get_option('gstreamer'))
682 gstrtp_dep = dependency('gstreamer-rtp-1.0', required : get_option('gstreamer'))
698 check_dep = dependency('check', version : '>= 0.9.10', required : get_option('tests'))
704 if get_option('man')
825 ' Enable BlueZ 5: @0@'.format(get_option('bluez5')),
826 ' Enable native headsets: @0@'.format(get_option('bluez5-native-headset')),
827 ' Enable ofono headsets: @0@'.format(get_option('bluez5-ofono-headset')),
829 ' Enable HAL->udev compat: @0@'.format(get_option('hal-compat')),
833 'Enable IPv6: @0@'.format(get_option('ipv6')),
838 'Enable Adrian echo canceller: @0@'.format(get_option('adrian-aec')),
842 'Enable Gcov coverage: @0@'.format(get_option('gcov')),
843 'Enable man pages: @0@'.format(get_option('man')),
844 'Enable unit tests: @0@'.format(get_option('tests')),
846 'Database: @0@'.format(get_option('database')),
847 'Legacy Database Entry Support: @0@'.format(get_option('legacy-database-entry-format')),
849 ' Clear old devices: @0@'.format(get_option('stream-restore-clear-old-devices')),
850 'Running from build tree: @0@'.format(get_option('running-from-build-tree')),
863 if not speex_dep.found() and not webrtc_dep.found() and not get_option('adrian-aec')