]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename `linux' to `gnu_linux'.
authorRichard M. Stallman <rms@gnu.org>
Sun, 2 Oct 2011 22:43:52 +0000 (18:43 -0400)
committerRichard M. Stallman <rms@gnu.org>
Sun, 2 Oct 2011 22:43:52 +0000 (18:43 -0400)
ChangeLog
configure.in

index 3e76c91b196c0f5ea25692515c91955fa2a2dc92..6f17289a6142b8979eb8bab01155ab46e76e1a9b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-10-02  Richard Stallman  <rms@gnu.org>
+
+       * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
+       and xlinux_second_failure to xgnu_linux_second_failure.
+
 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
 
        * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
index d2ffdd5a19e7f9d46dc4cfa660df7c72bb541e2f..b8de80baf5d02fd0bece200a399a7c1db4a46482 100644 (file)
@@ -1792,9 +1792,9 @@ if test "${HAVE_X11}" = "yes"; then
     AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
     AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
      [[XOpenDisplay ("foo");]])],
-     [xlinux_first_failure=no],
-     [xlinux_first_failure=yes])
-    if test "${xlinux_first_failure}" = "yes"; then
+     [xgnu_linux_first_failure=no],
+     [xgnu_linux_first_failure=yes])
+    if test "${xgnu_linux_first_failure}" = "yes"; then
       OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
       OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
       OLD_CPPFLAGS="$CPPFLAGS"
@@ -1805,9 +1805,9 @@ if test "${HAVE_X11}" = "yes"; then
       LIBS="$LIBS -b i486-linuxaout"
       AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
        [[XOpenDisplay ("foo");]])],
-       [xlinux_second_failure=no],
-       [xlinux_second_failure=yes])
-      if test "${xlinux_second_failure}" = "yes"; then
+       [xgnu_linux_second_failure=no],
+       [xgnu_linux_second_failure=yes])
+      if test "${xgnu_linux_second_failure}" = "yes"; then
        # If we get the same failure with -b, there is no use adding -b.
        # So take it out.  This plays safe.
        LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"