Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b5fcbf60 authored by David Parsons's avatar David Parsons
Browse files

Fix condition for openmp absence warning msg

parent f9a871f4
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ AC_OPENMP
AM_PROG_CC_C_O
# Print warning if openmp not found
AC_CHECK_FILE([omp.h], , [AC_MSG_WARN([openmp not found - continuing without openmp support])])
AC_CHECK_HEADER([omp.h], , [AC_MSG_WARN([openmp not found - continuing without openmp support])])
# Initialize configure-time defined flags
AC_SUBST(AEVOLCPPFLAGS, "") # C PreProcessor flags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment