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
61
62
63
64
65
66
67
68
69
|
$NetBSD: patch-configure,v 1.3 2022/08/25 22:09:14 thor Exp $
# Portability of test command
--- configure.orig 2022-07-29 20:55:26.095390777 +0000
+++ configure
@@ -156118,7 +156118,7 @@ $as_echo_n "checking if memory patcher s
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $opal_memory_patcher_happy" >&5
$as_echo "$opal_memory_patcher_happy" >&6; }
- if test "$opal_memory_patcher_happy" == "yes"; then :
+ if test "$opal_memory_patcher_happy" = "yes"; then :
for ac_func in __curbrk
do :
@@ -338377,7 +338377,7 @@ cat >>confdefs.h <<_ACEOF
#define OMPI_MCA_OP_HAVE_SSE3 $op_sse3_support
_ACEOF
- if test "$op_avx512_support" == "1"; then
+ if test "$op_avx512_support" = "1"; then
MCA_BUILD_ompi_op_has_avx512_support_TRUE=
MCA_BUILD_ompi_op_has_avx512_support_FALSE='#'
else
@@ -338385,7 +338385,7 @@ else
MCA_BUILD_ompi_op_has_avx512_support_FALSE=
fi
- if test "$op_avx2_support" == "1"; then
+ if test "$op_avx2_support" = "1"; then
MCA_BUILD_ompi_op_has_avx2_support_TRUE=
MCA_BUILD_ompi_op_has_avx2_support_FALSE='#'
else
@@ -338393,7 +338393,7 @@ else
MCA_BUILD_ompi_op_has_avx2_support_FALSE=
fi
- if test "$op_avx_support" == "1"; then
+ if test "$op_avx_support" = "1"; then
MCA_BUILD_ompi_op_has_avx_support_TRUE=
MCA_BUILD_ompi_op_has_avx_support_FALSE='#'
else
@@ -338401,7 +338401,7 @@ else
MCA_BUILD_ompi_op_has_avx_support_FALSE=
fi
- if test "$op_sse41_support" == "1"; then
+ if test "$op_sse41_support" = "1"; then
MCA_BUILD_ompi_op_has_sse41_support_TRUE=
MCA_BUILD_ompi_op_has_sse41_support_FALSE='#'
else
@@ -338409,7 +338409,7 @@ else
MCA_BUILD_ompi_op_has_sse41_support_FALSE=
fi
- if test "$op_sse3_support" == "1"; then
+ if test "$op_sse3_support" = "1"; then
MCA_BUILD_ompi_op_has_sse3_support_TRUE=
MCA_BUILD_ompi_op_has_sse3_support_FALSE='#'
else
@@ -361527,7 +361527,7 @@ if test "${with_ompi_pmix_rte+set}" = se
withval=$with_ompi_pmix_rte;
fi
- if test "$with_ompi_pmix_rte" == "yes"; then :
+ if test "$with_ompi_pmix_rte" = "yes"; then :
should_build=$should_build
{ $as_echo "$as_me:${as_lineno-$LINENO}: PMIx RTE selected by user" >&5
$as_echo "$as_me: PMIx RTE selected by user" >&6;}
|