]> git.eshelyaron.com Git - emacs.git/commitdiff
(with_x_toolkit): Don't allow motif or open-look.
authorRichard M. Stallman <rms@gnu.org>
Sat, 26 Feb 1994 22:05:19 +0000 (22:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 26 Feb 1994 22:05:19 +0000 (22:05 +0000)
configure1.in

index 9084e20dee7be7438caf0ad861c391b14395eb32..913de3835bab893b851b5a812be0e1a29a5d7f70 100755 (executable)
@@ -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
            ;;