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 | 0de5246d1de6d9d71480a9d5d99f1f6b085662d0 (patch) | |
tree | 2232e9743bc938144afe02487e0ed7a5da42af93 /configure1.in | |
parent | b1d07009bf9537461790fdf3192ac0fcb27e1b42 (diff) | |
download | emacs-0de5246d1de6d9d71480a9d5d99f1f6b085662d0.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 ;; |