This help message
0$ ./configure --help | grep -A 1 'with-gui'
1 --with-gui[=no|qt5|auto]
2 build bitcoin-qt GUI (default=auto)
states that --with-gui
and --with-gui=auto
are equivalent.
But this is not correct.
Consider a system without available Qt:
0$ ./configure --with-gui | grep 'with gui'
1configure: error: Qt dependencies not found
0$ ./configure --with-gui=auto | grep 'with gui'
1configure: WARNING: Qt dependencies not found; bitcoin-qt frontend will not be built
2 with gui / qt = no
What should be fixed: the help message or configure
behavior?