1option('xorg', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 2 description: 'Enable Xorg X Server') 3option('xephyr', type: 'boolean', value: false, 4 description: 'Enable Xephyr nested X server') 5option('glamor', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 6 description: 'Enable glamor (default yes for Xorg builds)') 7option('xnest', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 8 description: 'Enable Xnest nested X server') 9option('xvfb', type: 'boolean', value: true, 10 description: 'Enable Xvfb X server') 11option('xwin', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 12 description: 'Enable XWin X server') 13option('xquartz', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 14 description: 'Enable Xquartz X server') 15 16 17option('builder_addr', type: 'string', description: 'Builder address', value: 'xorg@lists.freedesktop.org') 18option('builder_string', type: 'string', description: 'Additional builder string') 19 20option('log_dir', type: 'string') 21option('module_dir', type: 'string', value: 'xorg/modules', 22 description: 'X.Org modules directory (absolute or relative to the directory specified by the libdir option)') 23option('default_font_path', type: 'string') 24 25option('glx', type: 'boolean', value: true) 26option('xdmcp', type: 'boolean', value: true) 27option('xdm-auth-1', type: 'boolean', value: true) 28option('secure-rpc', type: 'boolean', value: true) 29option('ipv6', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto') 30option('input_thread', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto') 31 32option('xkb_dir', type: 'string') 33option('xkb_output_dir', type: 'string') 34option('xkb_bin_dir', type: 'string') 35option('xkb_default_rules', type: 'string', value: 'evdev') 36option('xkb_default_model', type: 'string', value: 'pc105') 37option('xkb_default_layout', type: 'string', value: 'us') 38option('xkb_default_variant', type: 'string') 39option('xkb_default_options', type: 'string') 40 41option('fallback_input_driver', type: 'string', value: 'auto') 42 43option('vendor_name', type: 'string', value: 'The X.Org Foundation') 44option('vendor_name_short', type: 'string', value: 'X.Org') 45option('vendor_web', type: 'string', value: 'http://wiki.x.org') 46 47option('dtrace', type: 'boolean', value: false, 48 description: 'Enable dtrace hooks') 49 50option('listen_tcp', type: 'boolean', value: false, 51 description: 'Listen on TCP by default') 52option('listen_unix', type: 'boolean', value: true, 53 description: 'Listen on Unix by default') 54option('listen_local', type: 'boolean', value: true, 55 description: 'Listen on local by default') 56 57option('int10', type: 'combo', choices: ['stub', 'x86emu', 'vm86', 'auto', 'false'], 58 value: 'auto', 59 description: 'Xorg int10 backend (default: usually x86emu)') 60option('suid_wrapper', type: 'boolean', value: 'false', 61 description: 'SUID wrapper for legacy driver support') 62option('pciaccess', type: 'boolean', value: 'true', 63 description: 'Xorg pciaccess support') 64option('udev', type: 'boolean', value: 'true') 65option('udev_kms', type: 'boolean', value: 'true') 66option('hal', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 67 description: 'Enable HAL integration') 68option('systemd_logind', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 69 description: 'Enable systemd-logind integration') 70option('vgahw', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 71 description: 'Xorg VGA access module') 72option('dpms', type: 'boolean', value: true, 73 description: 'Xorg DPMS extension') 74option('xf86bigfont', type: 'boolean', value: false, 75 description: 'XF86 Big Font extension') 76option('screensaver', type: 'boolean', value: true, 77 description: 'ScreenSaver extension') 78option('xres', type: 'boolean', value: true, 79 description: 'XRes extension') 80option('xace', type: 'boolean', value: true, 81 description: 'X-ACE extension') 82option('xselinux', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 83 description: 'XSELINUX extension') 84option('xinerama', type: 'boolean', value: true, 85 description: 'Xinerama extension') 86option('xcsecurity', type: 'boolean', value: false, 87 description: 'Security extension') 88option('xv', type: 'boolean', value: true, 89 description: 'Xv extension') 90option('xvmc', type: 'boolean', value: true, 91 description: 'XvMC extension') 92option('dga', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 93 description: 'DGA extension') 94option('linux_apm', type: 'boolean', value: true, 95 description: 'APM support on Linux') 96option('linux_acpi', type: 'boolean', value: true, 97 description: 'ACPI support on Linux') 98option('mitshm', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 99 description: 'SHM extension') 100option('agp', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 101 description: 'AGP support') 102option('sha1', type: 'combo', choices: ['libc', 'CommonCrypto', 'CryptoAPI', 'libmd', 'libsha1', 'libnettle', 'libgcrypt', 'libcrypto', 'auto'], value: 'auto', 103 description: 'SHA1 implementation') 104option('xf86-input-inputtest', type: 'boolean', value: true, 105 description: 'Test input driver support on Xorg') 106 107option('dri1', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', description: 'Build DRI1 extension (default: auto)') 108option('dri2', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', description: 'Build DRI2 extension (default: auto)') 109option('dri3', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', description: 'Build DRI3 extension (default: auto)') 110option('drm', type: 'boolean', value: 'true', 111 description: 'Build Xorg with libdrm support') 112 113option('apple-applications-dir', type: 'string', value: '/Applications/Utilities', 114 description: 'Applications directory') 115option('apple-application-name', type: 'string', value: 'X11', 116 description: 'Application name') 117option('bundle-id-prefix', type: 'string', value: 'org.x', 118 description: 'RDNS prefix for bundle identifier') 119option('bundle-version', type: 'string', value: 'auto', 120 description: 'The CFBundleVersion for the application bundle') 121option('bundle-version-string', type: 'string', value: 'auto', 122 description: 'The CFBundleShortVersionString for the application bundle') 123option('sparkle-feed-url', type: 'string', 124 description: 'Feed URL for autoupdating with the Sparkle Framework (default: disabled)') 125option('sparkle-public-edkey', type: 'string', 126 description: 'Public EdDSA key for verifying updates from the Sparkle feed (default: disabled)') 127option('xpbproxy', type: 'boolean', value: false, 128 description: 'Build a standalone X pasteboard proxy') 129 130option('libunwind', type: 'boolean', value: false, 131 description: 'Use libunwind for backtrace reporting') 132 133option('docs', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 134 description: 'Build documentation') 135option('devel-docs', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 136 description: 'Build development documentation') 137option('docs-pdf', type: 'combo', choices: ['true', 'false', 'auto'], value: 'auto', 138 description: 'Whether to build PDF version of documentation. Setting is ignored if documentation is not built.') 139