diff options
| author | David J. MacKenzie | 1994-09-05 21:29:37 +0000 |
|---|---|---|
| committer | David J. MacKenzie | 1994-09-05 21:29:37 +0000 |
| commit | 530ce50280df5a8d8c9f3330a4bf3f29df9844e5 (patch) | |
| tree | d239819b754158facdbe828101f3527f4c2c2bd1 | |
| parent | dda2270ad43c687b4a03b278c094f7054667dea3 (diff) | |
| download | emacs-530ce50280df5a8d8c9f3330a4bf3f29df9844e5.tar.gz emacs-530ce50280df5a8d8c9f3330a4bf3f29df9844e5.zip | |
remove --with-x10
| -rw-r--r-- | configure.in | 29 |
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. | |||
| 2 | dnl To rebuild the `configure' script from this, execute the command | 2 | dnl To rebuild the `configure' script from this, execute the command |
| 3 | dnl autoconf | 3 | dnl autoconf |
| 4 | dnl in the directory containing this script. | 4 | dnl in the directory containing this script. |
| 5 | AC_PREREQ(1.110)dnl | 5 | AC_PREREQ(1.111)dnl |
| 6 | AC_INIT(src/lisp.h) | 6 | AC_INIT(src/lisp.h) |
| 7 | AC_CONFIG_HEADER(src/config.h) | 7 | AC_CONFIG_HEADER(src/config.h) |
| 8 | 8 | ||
| @@ -20,10 +20,6 @@ lockdir='${statedir}/emacs/lock' | |||
| 20 | archlibdir='${libdir}/emacs/${version}/${configuration}' | 20 | archlibdir='${libdir}/emacs/${version}/${configuration}' |
| 21 | docdir='${datadir}/emacs/${version}/etc' | 21 | docdir='${datadir}/emacs/${version}/etc' |
| 22 | 22 | ||
| 23 | AC_ARG_WITH(x10, | ||
| 24 | [ --with-x10 Support the X Window System version 10]) | ||
| 25 | AC_ARG_WITH(x, | ||
| 26 | [ --with-x Support the X Window System version 11]) | ||
| 27 | AC_ARG_WITH(x-toolkit, | 23 | AC_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 | ||
| 840 | case "${with_x10}" in | 836 | AC_FIND_X |
| 841 | yes ) window_system=x10 ;; | 837 | if test "$no_x" = yes; then |
| 842 | no ) window_system=none ;; | 838 | window_system=none |
| 843 | *) | 839 | else |
| 844 | AC_FIND_X | 840 | window_system=x11 |
| 845 | if test "$no_x" = yes; then | 841 | fi |
| 846 | window_system=none | ||
| 847 | else | ||
| 848 | window_system=x11 | ||
| 849 | fi | ||
| 850 | ;; | ||
| 851 | esac | ||
| 852 | 842 | ||
| 853 | test "${x_libraries}" != NONE && LD_SWITCH_X_SITE="-L${x_libraries}" | 843 | test "${x_libraries}" != NONE && LD_SWITCH_X_SITE="-L${x_libraries}" |
| 854 | test "${x_libraries}" != NONE && LD_SWITCH_X_SITE_AUX="-R${x_libraries}" | 844 | test "${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 |