emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MS-Windows build using Posix configury


From: Glenn Morris
Subject: Re: MS-Windows build using Posix configury
Date: Wed, 17 Apr 2013 02:31:44 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Eli Zaretskii wrote:

> -if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes"; then
> +if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes" || test 
> "${opsys}" = "mingw32"; then

Can we abstract this kind of thing into

DISPLAY_GRAPHIC_P=no

test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes" || \
  test "${opsys}" = "mingw32" && DISPLAY_GRAPHIC_P=yes

if test "${DISPLAY_GRAPHIC_P}" = "yes"; then...

Sometimes it seems to be test "${HAVE_W32}" = "yes" instead, so maybe
there are not enough common patterns for it to be worthwhile.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]