aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2011-10-02 18:43:52 -0400
committerRichard M. Stallman2011-10-02 18:43:52 -0400
commit423dbf9b1e682291f32cf901ad71c586eeca3958 (patch)
tree454274953746e74cd83c332a644e471a4102f27f
parent64522086318c6fefcd591c1a562a289776b2737f (diff)
downloademacs-423dbf9b1e682291f32cf901ad71c586eeca3958.tar.gz
emacs-423dbf9b1e682291f32cf901ad71c586eeca3958.zip
Rename `linux' to `gnu_linux'.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in12
2 files changed, 11 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 3e76c91b196..6f17289a614 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12011-10-02 Richard Stallman <rms@gnu.org>
2
3 * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
4 and xlinux_second_failure to xgnu_linux_second_failure.
5
12011-09-29 Eli Zaretskii <eliz@gnu.org> 62011-09-29 Eli Zaretskii <eliz@gnu.org>
2 7
3 * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h, 8 * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
diff --git a/configure.in b/configure.in
index d2ffdd5a19e..b8de80baf5d 100644
--- a/configure.in
+++ b/configure.in
@@ -1792,9 +1792,9 @@ if test "${HAVE_X11}" = "yes"; then
1792 AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link) 1792 AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
1793 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], 1793 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
1794 [[XOpenDisplay ("foo");]])], 1794 [[XOpenDisplay ("foo");]])],
1795 [xlinux_first_failure=no], 1795 [xgnu_linux_first_failure=no],
1796 [xlinux_first_failure=yes]) 1796 [xgnu_linux_first_failure=yes])
1797 if test "${xlinux_first_failure}" = "yes"; then 1797 if test "${xgnu_linux_first_failure}" = "yes"; then
1798 OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE" 1798 OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
1799 OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE" 1799 OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
1800 OLD_CPPFLAGS="$CPPFLAGS" 1800 OLD_CPPFLAGS="$CPPFLAGS"
@@ -1805,9 +1805,9 @@ if test "${HAVE_X11}" = "yes"; then
1805 LIBS="$LIBS -b i486-linuxaout" 1805 LIBS="$LIBS -b i486-linuxaout"
1806 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], 1806 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
1807 [[XOpenDisplay ("foo");]])], 1807 [[XOpenDisplay ("foo");]])],
1808 [xlinux_second_failure=no], 1808 [xgnu_linux_second_failure=no],
1809 [xlinux_second_failure=yes]) 1809 [xgnu_linux_second_failure=yes])
1810 if test "${xlinux_second_failure}" = "yes"; then 1810 if test "${xgnu_linux_second_failure}" = "yes"; then
1811 # If we get the same failure with -b, there is no use adding -b. 1811 # If we get the same failure with -b, there is no use adding -b.
1812 # So take it out. This plays safe. 1812 # So take it out. This plays safe.
1813 LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE" 1813 LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"