* configure.in: Added changequote(,) before the host case (since
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Sun, 9 Feb 1997 13:29:55 +0000 (13:29 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Sun, 9 Feb 1997 13:29:55 +0000 (13:29 +0000)
we use [ and ] in a pattern).
* configure: Regenerated.

qt/ChangeLog
qt/configure
qt/configure.in

index 45413e7..70a11a4 100644 (file)
@@ -1,3 +1,9 @@
+Sun Feb  9 15:20:59 1997  Mikael Djurfeldt  <mdj@kenneth>
+
+       * configure.in: Added changequote(,) before the host case (since
+       we use [ and ] in a pattern).
+       * configure: Regenerated.
+
 Fri Feb  7 18:00:07 1997  Jim Blandy  <jimb@floss.cyclic.com>
 
        * configure.in: Recognize i686 as an okay processor too.
index 5252f54..41cd1f6 100755 (executable)
@@ -1138,8 +1138,9 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 echo "$ac_t""$host" 1>&6
 
 
+
 case "$host" in
-i345686-*-*)
+i[3456]86-*-*)
        qtmds_s=$srcdir/md/i386.s
        qtmd_h=$srcdir/md/i386.h
        qtmdc_c=$srcdir/md/null.c 
@@ -1175,6 +1176,7 @@ sparc-*-*)
 esac
 
 
+
 if $threads_enabled; then
    target_libs=libqt.a
 else
index a244e54..7c36278 100644 (file)
@@ -16,6 +16,7 @@ fi
 # Determine the host we are working on
 AC_CANONICAL_HOST
 
+changequote(,)dnl We use [ and ] in a regexp in the case
 case "$host" in
 i[3456]86-*-*)
        qtmds_s=$srcdir/md/i386.s
@@ -51,6 +52,7 @@ sparc-*-*)
        threads_enabled=false
        ;;
 esac
+changequote([, ])
 
 
 if $threads_enabled; then