diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-02-26 22:05:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-02-26 22:05:19 +0000 |
commit | ad38a339b0b1a95478dcea47d6c3aaa02de54925 (patch) | |
tree | 2449a736dc42c15149c766b4ca2e6f63531e2bb9 /configure1.in | |
parent | 454ea2bab11c9409583812213e2792c2a0df6998 (diff) | |
download | emacs-ad38a339b0b1a95478dcea47d6c3aaa02de54925.tar.gz |
(with_x_toolkit): Don't allow motif or open-look.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/configure1.in b/configure1.in index 9084e20dee7..913de3835ba 100755 --- a/configure1.in +++ b/configure1.in @@ -198,18 +198,21 @@ Set it to either \`yes' or \`no'." ## Has the user specified which toolkit they want to support? "with_x_toolkit" ) - ## Make sure the value given was either "yes" or "no". case "${val}" in y | ye | yes ) val=athena ;; n | no ) val=no ;; l | lu | luc | luci | lucid ) val=lucid ;; a | at | ath | athe | athena ) val=athena ;; - m | mo | mot | moti | motif ) val=motif ;; - o | op | ope | open | open- | open-l | open-lo \ - | open-loo | open-look ) val=open-look ;; +# These don't currently work. +# m | mo | mot | moti | motif ) val=motif ;; +# o | op | ope | open | open- | open-l | open-lo \ +# | open-loo | open-look ) val=open-look ;; * ) - (echo "${progname}: the \`--${optname}' option is supposed to have a value -which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'." + ( +#echo "${progname}: the \`--${optname}' option is supposed to have a value +#which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'." +echo "${progname}: the \`--${optname}' option is supposed to have a value +which is \`yes', \`no', \`lucid', or \`athena'. echo "${short_usage}") >&2 exit 1 ;; |