Some improvements to building

This commit is contained in:
speedie 2023-07-10 18:24:52 +02:00
parent ad4e1ab7e1
commit 2d445f860d
2 changed files with 10 additions and 63 deletions

View file

@ -1,62 +1,9 @@
option( option('wayland', type : 'boolean', value : true, description : 'Enable Wayland support')
'wayland', option('x11', type : 'boolean', value : true, description : 'Enable X11 support')
type : 'boolean', option('xinerama', type : 'boolean', value : true, description : 'Enable multi-monitor support using libXinerama')
value : true, option('imlib2', type : 'boolean', value : true, description : 'Enable image support')
description : 'Enable Wayland support' option('openssl', type : 'boolean', value : true, description : 'Enable OpenSSL, used for image support')
) option('xresources', type : 'boolean', value : true, description : 'Enable .Xresources/xrdb support')
option('fribidi', type : 'boolean', value : true, description : 'Enable Right-to-left language support')
option( option('libconfig', type : 'boolean', value : true, description : 'Enable configuration file support')
'x11', option('regex', type : 'boolean', value : true, description : 'Enable regex matching')
type : 'boolean',
value : true,
description : 'Enable X11 support'
)
option(
'xinerama',
type : 'boolean',
value : true,
description : 'Enable multi-monitor support using libXinerama'
)
option(
'imlib2',
type : 'boolean',
value : true,
description : 'Enable image support'
)
option(
'openssl',
type : 'boolean',
value : true,
description : 'Enable OpenSSL, used for image support'
)
option(
'xresources',
type : 'boolean',
value : true,
description : 'Enable .Xresources/xrdb support'
)
option(
'fribidi',
type : 'boolean',
value : true,
description : 'Enable Right-to-left language support'
)
option(
'libconfig',
type : 'boolean',
value : true,
description : 'Enable configuration file support'
)
option(
'regex',
type : 'boolean',
value : true,
description : 'Enable regex matching'
)

View file

@ -10,9 +10,9 @@ xresources=${xresources:-true}
wayland=${wayland:-true} wayland=${wayland:-true}
x11=${x11:-true} x11=${x11:-true}
regex=${regex:-true} regex=${regex:-true}
prefix="${prefix:-/usr}" prefix="${prefix:-/usr}"
opt=${opt:--O2}
reconfigure=${reconfigure:-false} reconfigure=${reconfigure:-false}
static=${static:-false} static=${static:-false}