diff options
| author | Richard M. Stallman | 2011-10-02 18:43:52 -0400 |
|---|---|---|
| committer | Richard M. Stallman | 2011-10-02 18:43:52 -0400 |
| commit | 423dbf9b1e682291f32cf901ad71c586eeca3958 (patch) | |
| tree | 454274953746e74cd83c332a644e471a4102f27f | |
| parent | 64522086318c6fefcd591c1a562a289776b2737f (diff) | |
| download | emacs-423dbf9b1e682291f32cf901ad71c586eeca3958.tar.gz emacs-423dbf9b1e682291f32cf901ad71c586eeca3958.zip | |
Rename `linux' to `gnu_linux'.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 12 |
2 files changed, 11 insertions, 6 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-09-29 Eli Zaretskii <eliz@gnu.org> | 6 | 2011-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" |