options' default values of autoconf ./configure scripts
Posted
by
hamstergene
on Super User
See other posts from Super User
or by hamstergene
Published on 2012-04-07T09:37:50Z
Indexed on
2012/04/07
11:36 UTC
Read the original article
Hit count: 302
Having run ./configure --help
there is a list of options that can be tweaked in the future build, for example
--enable-luajit Enable LuaJit Support
--disable-env clearing/setting of ENV vars
Though any option can be used with enable
and disable
prefix, some are presented as --enable-me
and other as --disable-me
in the help output.
Is this supposed to hint me of default values, and if yes, how do I to figure them out? Because either way makes sense to me:
luajit
is disabled by default and therefore it is presented as--enable-luajit
so I can enable it by conveniently copy-pasting it from help output to command line.being listed with
--enable
in help output indicates thatluajit
is enabled by default.
© Super User or respective owner