gentoo/dev-libs/maloc/files/maloc-1.4-mpi.patch
Sam James 760553ab99
dev-libs/maloc: port to EAPI 7
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
2021-02-27 01:00:03 +00:00

23 lines
581 B
Diff

--- a/configure.ac
+++ b/configure.ac
@@ -397,12 +397,14 @@ AC_SUBST(rl_inc)
dnl # ----------------------
dnl # HANDLE THE MPI LIBRARY
dnl # ----------------------
+mpi_use=""
AC_MSG_CHECKING([whether you want MPI])
-AC_ARG_ENABLE(mpi,
- [ --enable-mpi enable MPI layer [[default=no]]],
- [ mpi_use="yes" ],
- [ mpi_use="" ]
-)
+AC_ARG_ENABLE([mpi],
+ AS_HELP_STRING([--enable-mpi enable MPI layer [[default=no]]]))
+
+AS_IF([test "x$enable_mpi" = "xyes"], [
+ mpi_use="yes"
+])
mpi_lib="";
mpi_inc="";
if test -z "${mpi_use}"; then