[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: configure and freetype, etc. under non-X
From: |
Glenn Morris |
Subject: |
Re: configure and freetype, etc. under non-X |
Date: |
Wed, 25 Feb 2009 14:37:53 -0500 |
User-agent: |
Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) |
Adrian Robert wrote:
> It appears that in configure.in the checks for freetype, xft, otf,
> and m17n_flt are done regardless of whether the user is compiling for
> an X11 environment.
[...]
> What's the best way to avoid this? The patch here disables these
> checks except under X11 and sets the variables to "no", but is there
> a different preferred way?
FWIW, that looks fine to me. Most places seem to use
test "${HAVE_X11}" = "yes"
rather than
test ${HAVE_X11}" != "no"
as you have done; but since it's only ever yes or no, it makes no difference.