1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
$NetBSD: patch-ae,v 1.5 2008/12/21 11:41:01 obache Exp $
"test ==" portability fixes.
--- src/mpid/ch3/channels/nemesis/configure.orig 2008-12-20 17:29:37.000000000 +0300
+++ src/mpid/ch3/channels/nemesis/configure 2008-12-20 17:41:34.000000000 +0300
@@ -3790,7 +3790,7 @@
fi
-if test "${nemesis_network}" == "gm" ; then
+if test "${nemesis_network}" = "gm" ; then
ac_safe=`echo "gm.h" | sed 'y%./+-%__p_%'`
{ $as_echo "$as_me:$LINENO: checking for gm.h" >&5
$as_echo_n "checking for gm.h... " >&6; }
@@ -3989,7 +3989,7 @@
fi
-if test "${nemesis_network}" == "ib" ; then
+if test "${nemesis_network}" = "ib" ; then
ac_safe=`echo "verbs.h" | sed 'y%./+-%__p_%'`
{ $as_echo "$as_me:$LINENO: checking for verbs.h" >&5
$as_echo_n "checking for verbs.h... " >&6; }
@@ -4188,7 +4188,7 @@
fi
-if test "${nemesis_network}" == "mx" ; then
+if test "${nemesis_network}" = "mx" ; then
ac_safe=`echo "myriexpress.h" | sed 'y%./+-%__p_%'`
{ $as_echo "$as_me:$LINENO: checking for myriexpress.h" >&5
$as_echo_n "checking for myriexpress.h... " >&6; }
@@ -4397,7 +4397,7 @@
fi
-if test "${nemesis_network}" == "elan" ; then
+if test "${nemesis_network}" = "elan" ; then
echo "=== You're about to use the experimental Nemesis/Elan network module."
echo "=== This module has not been thoroughly tested and some performance issues remain."
@@ -4599,7 +4599,7 @@
fi
-if test "${nemesis_network}" == "sctp" ; then
+if test "${nemesis_network}" = "sctp" ; then
ac_safe=`echo "netinet/sctp.h" | sed 'y%./+-%__p_%'`
{ $as_echo "$as_me:$LINENO: checking for netinet/sctp.h" >&5
$as_echo_n "checking for netinet/sctp.h... " >&6; }
@@ -4798,7 +4798,7 @@
fi
-if test "${nemesis_network}" == "psm" ; then
+if test "${nemesis_network}" = "psm" ; then
ac_safe=`echo "psm.h" | sed 'y%./+-%__p_%'`
{ $as_echo "$as_me:$LINENO: checking for psm.h" >&5
$as_echo_n "checking for psm.h... " >&6; }
|