comparison configure1.in @ 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 2f23436468ce
children 9498f9251e32
comparison
equal deleted inserted replaced
6104:44fc65a7fc46 6105:31d2f3e0cf64
196 eval "${opt}=\"${val}\"" 196 eval "${opt}=\"${val}\""
197 ;; 197 ;;
198 198
199 ## Has the user specified which toolkit they want to support? 199 ## Has the user specified which toolkit they want to support?
200 "with_x_toolkit" ) 200 "with_x_toolkit" )
201 ## Make sure the value given was either "yes" or "no".
202 case "${val}" in 201 case "${val}" in
203 y | ye | yes ) val=athena ;; 202 y | ye | yes ) val=athena ;;
204 n | no ) val=no ;; 203 n | no ) val=no ;;
205 l | lu | luc | luci | lucid ) val=lucid ;; 204 l | lu | luc | luci | lucid ) val=lucid ;;
206 a | at | ath | athe | athena ) val=athena ;; 205 a | at | ath | athe | athena ) val=athena ;;
207 m | mo | mot | moti | motif ) val=motif ;; 206 # These don't currently work.
208 o | op | ope | open | open- | open-l | open-lo \ 207 # m | mo | mot | moti | motif ) val=motif ;;
209 | open-loo | open-look ) val=open-look ;; 208 # o | op | ope | open | open- | open-l | open-lo \
209 # | open-loo | open-look ) val=open-look ;;
210 * ) 210 * )
211 (echo "${progname}: the \`--${optname}' option is supposed to have a value 211 (
212 which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'." 212 #echo "${progname}: the \`--${optname}' option is supposed to have a value
213 #which is \`yes', \`no', \`lucid', \`athena', \`motif' or \`open-look'."
214 echo "${progname}: the \`--${optname}' option is supposed to have a value
215 which is \`yes', \`no', \`lucid', or \`athena'.
213 echo "${short_usage}") >&2 216 echo "${short_usage}") >&2
214 exit 1 217 exit 1
215 ;; 218 ;;
216 esac 219 esac
217 eval "${opt}=\"${val}\"" 220 eval "${opt}=\"${val}\""