Mercurial > emacs
changeset 6105:31d2f3e0cf64
(with_x_toolkit): Don't allow motif or open-look.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 26 Feb 1994 22:05:19 +0000 |
parents | 44fc65a7fc46 |
children | b8026de94b3a |
files | configure1.in |
diffstat | 1 files changed, 9 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/configure1.in Sat Feb 26 20:49:21 1994 +0000 +++ b/configure1.in Sat Feb 26 22:05:19 1994 +0000 @@ -198,18 +198,21 @@ ## 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 ;;