You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
states that --with-gui and --with-gui=auto are equivalent.
But this is not correct.
Consider a system without available Qt:
$ ./configure --with-gui | grep 'with gui'
configure: error: Qt dependencies not found
$ ./configure --with-gui=auto | grep 'with gui'
configure: WARNING: Qt dependencies not found; bitcoin-qt frontend will not be built
with gui / qt = no
What should be fixed: the help message or configure behavior?