[PATCH] Don't try asm on any Darwin version

Wilfredo Sánchez wsanchez@wsanchez.net
Thu Dec 5 02:10:01 2002


Howdy-

   This patch tweaks the logic as to whether to try ASM modules on 
Darwin so that it doesn't try on any Darwin version, rather than just 
6.1, since the ASM modules aren't available for any version.

	Regards,
	-wsv



Index: mpi/config.links
===================================================================
--- mpi/config.links    (revision 7)
+++ mpi/config.links    (working copy)
@@ -31,7 +31,7 @@

  if test "$try_asm_modules" = "yes" ; then
  case "${target}" in
-    powerpc-apple-darwin6.1)
+    powerpc-apple-darwin*)
         echo '/* No working assembler modules available */' 
 >>./mpi/asm-syntax.h
         path=""
         ;;