# HG changeset patch # User Richard M. Stallman # Date 762300319 0 # Node ID 31d2f3e0cf64ae0ab389fe46ef85a7a0ab828365 # Parent 44fc65a7fc46004fa2bbd49c1ad713c4cbdddaa0 (with_x_toolkit): Don't allow motif or open-look. diff -r 44fc65a7fc46 -r 31d2f3e0cf64 configure1.in --- 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 ;;