1option('gst_debug', type : 'boolean', value : true) 2option('gst_parse', type : 'boolean', value : true, 3 description: 'Enable pipeline string parser') 4option('registry', type : 'boolean', value : true) 5option('tracer_hooks', type : 'boolean', value : true, description: 'Enable tracer usage') 6option('ptp-helper-setuid-user', type : 'string', 7 description : 'User to switch to when installing gst-ptp-helper setuid root') 8option('ptp-helper-setuid-group', type : 'string', 9 description : 'Group to switch to when installing gst-ptp-helper setuid root') 10option('ptp-helper-permissions', type : 'combo', 11 choices : ['none', 'setuid-root', 'capabilities', 'auto'], value : 'auto') 12option('option-parsing', type : 'boolean', value : true, 13 description: 'Enable command line option parsing') 14option('poisoning', type : 'boolean', value : false, description : 'Enable poisoning of deallocated objects') 15option('memory-alignment', type: 'combo', 16 choices : ['1', '2', '4', '8', '16', '32', '64', '128', '256', '512', '1024', '2048', '4096', '8192', 'malloc', 'pagesize'], 17 value: 'malloc') 18 19# Feature options 20option('check', type : 'feature', value : 'auto', description : 'Build unit test libraries') 21option('libunwind', type : 'feature', value : 'auto', description : 'Use libunwind to generate backtraces') 22option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to generate better backtraces from libunwind') 23option('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces') 24option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files') 25option('coretracers', type : 'feature', value : 'auto', description : 'Build coretracers plugin') 26 27# Common feature options 28option('examples', type : 'feature', value : 'auto', yield : true) 29option('tests', type : 'feature', value : 'auto', yield : true) 30option('benchmarks', type : 'feature', value : 'auto', yield : true) 31option('tools', type : 'feature', value : 'auto', yield : true) 32option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings') 33option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)') 34option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true, 35 description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)') 36option('glib-asserts', type : 'feature', value : 'enabled', yield : true, 37 description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)') 38option('glib-checks', type : 'feature', value : 'enabled', yield : true, 39 description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)') 40option('extra-checks', type : 'feature', value : 'enabled', yield : true, description : 'Enable extra runtime checks') 41 42# Common options 43option('package-name', type : 'string', yield : true, 44 description : 'package name to use in plugins') 45option('package-origin', type : 'string', value : 'Unknown package origin', yield : true, 46 description : 'package origin URL to use in plugins') 47option('doc', type : 'feature', value : 'auto', yield: true, 48 description: 'Enable documentation.') 49