af6c0740c7
Changes since 1.0.7: - Added support for MPI 2.1 - Added support for MPI_Type_create_resized and MPI_Type_create_indexed_block datatypes in ROMIO. - Bug fixes, memory leak fixes and code cleanup.
15 lines
612 B
Text
15 lines
612 B
Text
$NetBSD: patch-ad,v 1.5 2008/12/21 11:41:01 obache Exp $
|
|
|
|
"test ==" portability fix.
|
|
|
|
--- configure.orig 2008-12-20 17:29:37.000000000 +0300
|
|
+++ configure 2008-12-20 17:45:09.000000000 +0300
|
|
@@ -32974,7 +32974,7 @@
|
|
;;
|
|
esac
|
|
|
|
- if test "$cpu_gcc_x86_cycle" == "no" ; then
|
|
+ if test "$cpu_gcc_x86_cycle" = "no" ; then
|
|
{ { $as_echo "$as_me:$LINENO: error: Linux86 cycle counter is not available on this system and or with the $CC compiler" >&5
|
|
$as_echo "$as_me: error: Linux86 cycle counter is not available on this system and or with the $CC compiler" >&2;}
|
|
{ (exit 1); exit 1; }; }
|