diff --git a/qt/ChangeLog b/qt/ChangeLog index 45413e7b7..70a11a46f 100644 --- a/qt/ChangeLog +++ b/qt/ChangeLog @@ -1,3 +1,9 @@ +Sun Feb 9 15:20:59 1997 Mikael Djurfeldt + + * 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 * configure.in: Recognize i686 as an okay processor too. diff --git a/qt/configure b/qt/configure index 5252f54b1..41cd1f60f 100755 --- a/qt/configure +++ b/qt/configure @@ -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 diff --git a/qt/configure.in b/qt/configure.in index a244e5405..7c3627820 100644 --- a/qt/configure.in +++ b/qt/configure.in @@ -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