summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDavid J. MacKenzie <djm@gnu.org>1994-09-05 21:29:37 +0000
committerDavid J. MacKenzie <djm@gnu.org>1994-09-05 21:29:37 +0000
commit9333b8d4fc3677d5b722a87bf2f549bd7d15f4be (patch)
tree0e54686952cfce16c33149997730f580235f3aa4 /configure.in
parent15bb7fb6f7e92a12b97ac764d874c2ec3f365418 (diff)
downloademacs-9333b8d4fc3677d5b722a87bf2f549bd7d15f4be.tar.gz
remove --with-x10
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in29
1 files changed, 7 insertions, 22 deletions
diff --git a/configure.in b/configure.in
index 471d952e4a3..e3ff1cd4d42 100644
--- a/configure.in
+++ b/configure.in
@@ -2,7 +2,7 @@ dnl This is an autoconf script.
dnl To rebuild the `configure' script from this, execute the command
dnl autoconf
dnl in the directory containing this script.
-AC_PREREQ(1.110)dnl
+AC_PREREQ(1.111)dnl
AC_INIT(src/lisp.h)
AC_CONFIG_HEADER(src/config.h)
@@ -20,10 +20,6 @@ lockdir='${statedir}/emacs/lock'
archlibdir='${libdir}/emacs/${version}/${configuration}'
docdir='${datadir}/emacs/${version}/etc'
-AC_ARG_WITH(x10,
-[ --with-x10 Support the X Window System version 10])
-AC_ARG_WITH(x,
-[ --with-x Support the X Window System version 11])
AC_ARG_WITH(x-toolkit,
[ --with-x-toolkit=KIT Use an X toolkit (KIT = lucid or athena)],
[ case "${withval}" in
@@ -837,18 +833,12 @@ dnl other checks for UNIX variants
#### Choose a window system.
-case "${with_x10}" in
- yes ) window_system=x10 ;;
- no ) window_system=none ;;
- *)
- AC_FIND_X
- if test "$no_x" = yes; then
- window_system=none
- else
- window_system=x11
- fi
- ;;
-esac
+AC_FIND_X
+if test "$no_x" = yes; then
+ window_system=none
+else
+ window_system=x11
+fi
test "${x_libraries}" != NONE && LD_SWITCH_X_SITE="-L${x_libraries}"
test "${x_libraries}" != NONE && LD_SWITCH_X_SITE_AUX="-R${x_libraries}"
@@ -865,11 +855,6 @@ dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;;
* ) USE_X_TOOLKIT=none ;;
esac
;;
- x10 )
- HAVE_X_WINDOWS=yes
- HAVE_X11=no
- USE_X_TOOLKIT=none
- ;;
none )
HAVE_X_WINDOWS=no
HAVE_X11=no