blob: df48beb6f0582bd1c8e3e9c2ecdc5b51bf1f2a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
$NetBSD: patch-src_mpi_romio_configure,v 1.2 2022/08/25 21:46:53 thor Exp $
Portability fix.
--- src/mpi/romio/configure.orig 2021-12-16 17:23:19.000000000 +0000
+++ src/mpi/romio/configure
@@ -22938,7 +22938,7 @@ fi
fi
if test -n "$file_system_daos" ; then
- if test "x$DAOS" == xyes ; then
+ if test "x$DAOS" = xyes ; then
$as_echo "#define ROMIO_DAOS 1" >>confdefs.h
@@ -24020,7 +24020,7 @@ if test "${with_aio_lite+set}" = set; th
withval=$with_aio_lite; with_aiolite=yes
fi
-if test "x$with_aiolite" == xyes; then :
+if test "x$with_aiolite" = xyes; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for lio_listio in -laio-lite" >&5
$as_echo_n "checking for lio_listio in -laio-lite... " >&6; }
if ${ac_cv_lib_aio_lite_lio_listio+:} false; then :
|