-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nathan Hjelm <[email protected]>
- Loading branch information
Showing
2 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
# | ||
# Copyright (c) 2014-2018 Los Alamos National Security, LLC. All rights | ||
# reserved. | ||
# Copyright (c) 2019 Triad National Security, LLC. All rights | ||
# reserved. | ||
# $COPYRIGHT$ | ||
# | ||
# Additional copyrights may follow | ||
|
@@ -10,7 +12,7 @@ | |
# | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([libhio], [1.4.1.2], [[email protected]]) | ||
AC_INIT([libhio], [1.4.1.3], [[email protected]]) | ||
AC_CONFIG_SRCDIR([src/hio_context.c]) | ||
AC_CONFIG_HEADERS([src/include/hio_config.h]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
|
@@ -37,7 +39,7 @@ if ( test -n "$XTOS_VERSION" || test -n "$CRAYPE_DIR" ) && (test -z $CC || test | |
if test ! -n "$LD" ; then | ||
LD=ld | ||
fi | ||
elif test -n "$MPICC" ; then | ||
elif test ! "$MPICC" = "none" ; then | ||
CC=${MPICC} | ||
CXX=${MPICXX} | ||
hio_use_mpi=1 | ||
|