OK, I did the last few patches and made the source release. Hope I got everything. I'll send out the standard announcement now. Thanks everyone. Josh __________________________________________________ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/
m4 eats the brackets. I guess they could be quoted somehow, but the system always shows up as "i386" anyway. --- configure.in.old Mon Jul 23 02:14:15 2001 +++ configure.in Mon Jul 23 02:14:25 2001 @@ -40,7 +40,7 @@ AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue) AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue) case "$host" in - i[3-6]86-*-openbsd*) OBJ_FORMAT=aoutb ;; + i386-*-openbsd*) OBJ_FORMAT=aoutb ;; *) OBJ_FORMAT=elf ;; esac AC_SUBST(OBJ_FORMAT) -- Christian "naddy" Weisgerber naddy@mips.inka.de
On Mon, Jul 23, 2001 at 12:15:46AM +0000, Christian Weisgerber wrote:> m4 eats the brackets. I guess they could be quoted somehow, but > the system always shows up as "i386" anyway.FYI, they can be quoted by doubling them ("[[3-6]]"). Even if config.guess always gives i386, It might be nice to allow the user to specify a system type manually (for instance, if the processor type were needed to choose between different assembler optimizations). -- - mdz