Is there a variable like system-configuration-options
that will provide the computed features of the running emacs? Specifically, I'm looking for X support (--with-x=yes|no
).
Ultimately I'm trying to figure out why emacs isn't starting in GUI mode, but I recently had the bone-headed realization that I'd originally built emacs before installing any X environment. So I re-installed X and my ./configure
call does mention X and GTK, so I would imagine that the support is there, but I'm not seeing emacs use a GUI. xeyes
and even gedit
work.
From ./configure
:
...
checking for X... libraries , headers
...
checking for GTK... yes
checking whether GTK compiles... yes
...
After I ran make clean && make && make install
, running emacs
still opens in terminal mode :-(
If I can determine that emacs was indeed built with X support, I'll probably ask a separate question about why it's not working :-(