aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-07-16 08:09:53 +0000
committerGlenn Morris2008-07-16 08:09:53 +0000
commit6ba72723bbb8bfe644bb67137aa1b9483dbe9ee4 (patch)
tree874ff868d202a08f7a690333dd614d6c2023b857
parent132d04752a194336e0ea965245294af64f27226f (diff)
downloademacs-6ba72723bbb8bfe644bb67137aa1b9483dbe9ee4.tar.gz
emacs-6ba72723bbb8bfe644bb67137aa1b9483dbe9ee4.zip
(with_ns): Remove dead code, since OPTION_DEFAULT_OFF means never unset.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in16
2 files changed, 6 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 3885a21dcd2..6dce58cba97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
12008-07-16 Glenn Morris <rgm@gnu.org> 12008-07-16 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.in (with_kerberos, with_kerberos5, with_hesiod):
4 Fix tests for OPTION_DEFAULT_OFF (variables never unset).
5 (with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
6 never unset.
7
3 * make-dist: Add nextstep/ directories. 8 * make-dist: Add nextstep/ directories.
4 (src, lib-src): Add .m files. 9 (src, lib-src): Add .m files.
5 10
diff --git a/configure.in b/configure.in
index 9b9789713b3..e6db75750fc 100644
--- a/configure.in
+++ b/configure.in
@@ -1241,22 +1241,8 @@ if test "${with_ns}" != no; then
1241 fi 1241 fi
1242 AC_CHECK_HEADER(AppKit/AppKit.h, HAVE_NS=yes) 1242 AC_CHECK_HEADER(AppKit/AppKit.h, HAVE_NS=yes)
1243fi 1243fi
1244if test "${window_system}" = x11 && test "${HAVE_NS}" = yes; then
1245 if test "${with_ns+set}" != set \
1246 && test "${ns_appdir_x+set}" != set; then
1247 HAVE_NS=no
1248 fi
1249fi
1250
1251if test "${window_system}" = mac && test "${HAVE_NS}" = yes; then
1252 if test "${with_ns+set}" != set \
1253 && test "${ns_appdir_x+set}" != set; then
1254 HAVE_NS=no
1255 else
1256 HAVE_CARBON=no
1257 fi
1258fi
1259if test "${HAVE_NS}" = yes; then 1244if test "${HAVE_NS}" = yes; then
1245 test "${window_system}" = mac && HAVE_CARBON=no
1260 window_system=nextstep 1246 window_system=nextstep
1261 with_xft=no 1247 with_xft=no
1262 with_freetype=no 1248 with_freetype=no