diff options
| author | Glenn Morris | 2008-07-16 08:09:53 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-07-16 08:09:53 +0000 |
| commit | 6ba72723bbb8bfe644bb67137aa1b9483dbe9ee4 (patch) | |
| tree | 874ff868d202a08f7a690333dd614d6c2023b857 | |
| parent | 132d04752a194336e0ea965245294af64f27226f (diff) | |
| download | emacs-6ba72723bbb8bfe644bb67137aa1b9483dbe9ee4.tar.gz emacs-6ba72723bbb8bfe644bb67137aa1b9483dbe9ee4.zip | |
(with_ns): Remove dead code, since OPTION_DEFAULT_OFF means never unset.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 16 |
2 files changed, 6 insertions, 15 deletions
| @@ -1,5 +1,10 @@ | |||
| 1 | 2008-07-16 Glenn Morris <rgm@gnu.org> | 1 | 2008-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) |
| 1243 | fi | 1243 | fi |
| 1244 | if 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 | ||
| 1249 | fi | ||
| 1250 | |||
| 1251 | if 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 | ||
| 1258 | fi | ||
| 1259 | if test "${HAVE_NS}" = yes; then | 1244 | if 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 |