aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid J. MacKenzie1994-09-05 21:29:37 +0000
committerDavid J. MacKenzie1994-09-05 21:29:37 +0000
commit530ce50280df5a8d8c9f3330a4bf3f29df9844e5 (patch)
treed239819b754158facdbe828101f3527f4c2c2bd1
parentdda2270ad43c687b4a03b278c094f7054667dea3 (diff)
downloademacs-530ce50280df5a8d8c9f3330a4bf3f29df9844e5.tar.gz
emacs-530ce50280df5a8d8c9f3330a4bf3f29df9844e5.zip
remove --with-x10
-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.
2dnl To rebuild the `configure' script from this, execute the command 2dnl To rebuild the `configure' script from this, execute the command
3dnl autoconf 3dnl autoconf
4dnl in the directory containing this script. 4dnl in the directory containing this script.
5AC_PREREQ(1.110)dnl 5AC_PREREQ(1.111)dnl
6AC_INIT(src/lisp.h) 6AC_INIT(src/lisp.h)
7AC_CONFIG_HEADER(src/config.h) 7AC_CONFIG_HEADER(src/config.h)
8 8
@@ -20,10 +20,6 @@ lockdir='${statedir}/emacs/lock'
20archlibdir='${libdir}/emacs/${version}/${configuration}' 20archlibdir='${libdir}/emacs/${version}/${configuration}'
21docdir='${datadir}/emacs/${version}/etc' 21docdir='${datadir}/emacs/${version}/etc'
22 22
23AC_ARG_WITH(x10,
24[ --with-x10 Support the X Window System version 10])
25AC_ARG_WITH(x,
26[ --with-x Support the X Window System version 11])
27AC_ARG_WITH(x-toolkit, 23AC_ARG_WITH(x-toolkit,
28[ --with-x-toolkit=KIT Use an X toolkit (KIT = lucid or athena)], 24[ --with-x-toolkit=KIT Use an X toolkit (KIT = lucid or athena)],
29[ case "${withval}" in 25[ case "${withval}" in
@@ -837,18 +833,12 @@ dnl other checks for UNIX variants
837 833
838#### Choose a window system. 834#### Choose a window system.
839 835
840case "${with_x10}" in 836AC_FIND_X
841 yes ) window_system=x10 ;; 837if test "$no_x" = yes; then
842 no ) window_system=none ;; 838 window_system=none
843 *) 839else
844 AC_FIND_X 840 window_system=x11
845 if test "$no_x" = yes; then 841fi
846 window_system=none
847 else
848 window_system=x11
849 fi
850 ;;
851esac
852 842
853test "${x_libraries}" != NONE && LD_SWITCH_X_SITE="-L${x_libraries}" 843test "${x_libraries}" != NONE && LD_SWITCH_X_SITE="-L${x_libraries}"
854test "${x_libraries}" != NONE && LD_SWITCH_X_SITE_AUX="-R${x_libraries}" 844test "${x_libraries}" != NONE && LD_SWITCH_X_SITE_AUX="-R${x_libraries}"
@@ -865,11 +855,6 @@ dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;;
865 * ) USE_X_TOOLKIT=none ;; 855 * ) USE_X_TOOLKIT=none ;;
866 esac 856 esac
867 ;; 857 ;;
868 x10 )
869 HAVE_X_WINDOWS=yes
870 HAVE_X11=no
871 USE_X_TOOLKIT=none
872 ;;
873 none ) 858 none )
874 HAVE_X_WINDOWS=no 859 HAVE_X_WINDOWS=no
875 HAVE_X11=no 860 HAVE_X11=no