diff --git a/Makefile.in b/Makefile.in index 68a6461da7b..fa2b858ee1f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -98,7 +98,7 @@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -4121,6 +4121,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -4170,6 +4173,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/aclocal.m4 b/aclocal.m4 index 9941cc37001..8a7982009ad 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1060,6 +1060,7 @@ AC_SUBST([am__untar]) m4_include([m4/ac_cxx_rtti.m4]) m4_include([m4/ax_boost_base.m4]) m4_include([m4/ax_openmp.m4]) +m4_include([m4/ax_pthread.m4]) m4_include([m4/ax_split_version.m4]) m4_include([m4/ax_tls.m4]) m4_include([m4/backtrace.m4]) diff --git a/configure b/configure index 94bd1de54aa..356e81e82c9 100755 --- a/configure +++ b/configure @@ -775,6 +775,10 @@ LIBMESH_ENABLE_LASPACK_FALSE LIBMESH_ENABLE_LASPACK_TRUE LASPACK_LIB LASPACK_INCLUDE +PTHREAD_CFLAGS +PTHREAD_LIBS +PTHREAD_CC +ax_pthread_config TBB_INCLUDE TBB_LIBRARY TPETRA_INCLUDES @@ -1092,6 +1096,7 @@ with_dtk enable_tbb with_tbb with_tbb_lib +enable_pthreads enable_cppthreads enable_laspack enable_sfc @@ -1847,6 +1852,7 @@ Optional Features: --enable-trilinos build with Trilinos support --enable-tbb build with threading support via Threading Building Blocks + --enable-pthreads Build with pthread support --enable-cppthreads Build with C++ std::thread support --enable-laspack build with LASPACK iterative solver suppport --enable-sfc build with space-filling curves suppport @@ -30054,6 +30060,438 @@ if (test $enabletbb = yes); then fi # ------------------------------------------------------------- +# ------------------------------------------------------------- +# Pthread support -- enabled by default +# ------------------------------------------------------------- +# Check whether --enable-pthreads was given. +if test "${enable_pthreads+set}" = set; then : + enableval=$enable_pthreads; enablepthreads=$enableval +else + enablepthreads=yes +fi + + +if (test "$enablepthreads" != no) ; then + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +ax_pthread_ok=no + +# We used to check for pthread.h first, but this fails if pthread.h +# requires special compiler flags (e.g. on True64 or Sequent). +# It gets checked for in the link test anyway. + +# First of all, check if the user has set any of the PTHREAD_LIBS, +# etcetera environment variables, and if threads linking works using +# them: +if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 +$as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char pthread_join (); +int +main () +{ +return pthread_join (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ax_pthread_ok=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 +$as_echo "$ax_pthread_ok" >&6; } + if test x"$ax_pthread_ok" = xno; then + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" + fi + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" +fi + +# We must check for the threads library under a number of different +# names; the ordering is very important because some systems +# (e.g. DEC) have both -lpthread and -lpthreads, where one of the +# libraries is broken (non-POSIX). + +# Create a list of thread flags to try. Items starting with a "-" are +# C compiler flags, and other items are library names, except for "none" +# which indicates that we try without any flags at all, and "pthread-config" +# which is a program returning the flags for the Pth emulation library. + +ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" + +# The ordering *is* (sometimes) important. Some notes on the +# individual items follow: + +# pthreads: AIX (must check this before -lpthread) +# none: in case threads are in libc; should be tried before -Kthread and +# other compiler flags to prevent continual compiler warnings +# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) +# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) +# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) +# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) +# -pthreads: Solaris/gcc +# -mthreads: Mingw32/gcc, Lynx/gcc +# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it +# doesn't hurt to check since this sometimes defines pthreads too; +# also defines -D_REENTRANT) +# ... -mt is also the pthreads flag for HP/aCC +# pthread: Linux, etcetera +# --thread-safe: KAI C++ +# pthread-config: use pthread-config program (for GNU Pth library) + +case ${host_os} in + solaris*) + + # On Solaris (at least, for some versions), libc contains stubbed + # (non-functional) versions of the pthreads routines, so link-based + # tests will erroneously succeed. (We need to link with -pthreads/-mt/ + # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather + # a function called by this macro, so we could check for that, but + # who knows whether they'll stub that too in a future libc.) So, + # we'll just look for -pthreads and -lpthread first: + + ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags" + ;; + + darwin*) + ax_pthread_flags="-pthread $ax_pthread_flags" + ;; +esac + +if test x"$ax_pthread_ok" = xno; then +for flag in $ax_pthread_flags; do + + case $flag in + none) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 +$as_echo_n "checking whether pthreads work without any flags... " >&6; } + ;; + + -*) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 +$as_echo_n "checking whether pthreads work with $flag... " >&6; } + PTHREAD_CFLAGS="$flag" + ;; + + pthread-config) + # Extract the first word of "pthread-config", so it can be a program name with args. +set dummy pthread-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ax_pthread_config+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ax_pthread_config"; then + ac_cv_prog_ax_pthread_config="$ax_pthread_config" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ax_pthread_config="yes" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_prog_ax_pthread_config" && ac_cv_prog_ax_pthread_config="no" +fi +fi +ax_pthread_config=$ac_cv_prog_ax_pthread_config +if test -n "$ax_pthread_config"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_config" >&5 +$as_echo "$ax_pthread_config" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + if test x"$ax_pthread_config" = xno; then continue; fi + PTHREAD_CFLAGS="`pthread-config --cflags`" + PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" + ;; + + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 +$as_echo_n "checking for the pthreads library -l$flag... " >&6; } + PTHREAD_LIBS="-l$flag" + ;; + esac + + save_LIBS="$LIBS" + save_CFLAGS="$CFLAGS" + LIBS="$PTHREAD_LIBS $LIBS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Check for various functions. We must include pthread.h, + # since some functions may be macros. (On the Sequent, we + # need a special flag -Kthread to make this header compile.) + # We check for pthread_join because it is in -lpthread on IRIX + # while pthread_create is in libc. We check for pthread_attr_init + # due to DEC craziness with -lpthreads. We check for + # pthread_cleanup_push because it is one of the few pthread + # functions on Solaris that doesn't have a non-functional libc stub. + # We try pthread_create on general principles. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + static void routine(void *a) { a = 0; } + static void *start_routine(void *a) { return a; } +int +main () +{ +pthread_t th; pthread_attr_t attr; + pthread_create(&th, 0, start_routine, 0); + pthread_join(th, 0); + pthread_attr_init(&attr); + pthread_cleanup_push(routine, 0); + pthread_cleanup_pop(0) /* ; */ + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ax_pthread_ok=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 +$as_echo "$ax_pthread_ok" >&6; } + if test "x$ax_pthread_ok" = xyes; then + break; + fi + + PTHREAD_LIBS="" + PTHREAD_CFLAGS="" +done +fi + +# Various other checks: +if test "x$ax_pthread_ok" = xyes; then + save_LIBS="$LIBS" + LIBS="$PTHREAD_LIBS $LIBS" + save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $PTHREAD_CFLAGS" + + # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 +$as_echo_n "checking for joinable pthread attribute... " >&6; } + attr_name=unknown + for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +int attr = $attr; return attr /* ; */ + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + attr_name=$attr; break +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + done + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 +$as_echo "$attr_name" >&6; } + if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then + +cat >>confdefs.h <<_ACEOF +#define PTHREAD_CREATE_JOINABLE $attr_name +_ACEOF + + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 +$as_echo_n "checking if more special flags are required for pthreads... " >&6; } + flag=no + case ${host_os} in + aix* | freebsd* | darwin*) flag="-D_THREAD_SAFE";; + osf* | hpux*) flag="-D_REENTRANT";; + solaris*) + if test "$GCC" = "yes"; then + flag="-D_REENTRANT" + else + flag="-mt -D_REENTRANT" + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${flag}" >&5 +$as_echo "${flag}" >&6; } + if test "x$flag" != xno; then + PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PTHREAD_PRIO_INHERIT" >&5 +$as_echo_n "checking for PTHREAD_PRIO_INHERIT... " >&6; } +if ${ax_cv_PTHREAD_PRIO_INHERIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include +int +main () +{ +int i = PTHREAD_PRIO_INHERIT; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ax_cv_PTHREAD_PRIO_INHERIT=yes +else + ax_cv_PTHREAD_PRIO_INHERIT=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_PTHREAD_PRIO_INHERIT" >&5 +$as_echo "$ax_cv_PTHREAD_PRIO_INHERIT" >&6; } + if test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes"; then : + +$as_echo "#define HAVE_PTHREAD_PRIO_INHERIT 1" >>confdefs.h + +fi + + LIBS="$save_LIBS" + CFLAGS="$save_CFLAGS" + + # More AIX lossage: compile with *_r variant + if test "x$GCC" != xyes; then + case $host_os in + aix*) + case "x/$CC" in #( + x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6) : + #handle absolute path differently from PATH based program lookup + case "x$CC" in #( + x/*) : + if as_fn_executable_p ${CC}_r; then : + PTHREAD_CC="${CC}_r" +fi ;; #( + *) : + for ac_prog in ${CC}_r +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_PTHREAD_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$PTHREAD_CC"; then + ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_PTHREAD_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +PTHREAD_CC=$ac_cv_prog_PTHREAD_CC +if test -n "$PTHREAD_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 +$as_echo "$PTHREAD_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$PTHREAD_CC" && break +done +test -n "$PTHREAD_CC" || PTHREAD_CC="$CC" + ;; +esac ;; #( + *) : + ;; +esac + ;; + esac + fi +fi + +test -n "$PTHREAD_CC" || PTHREAD_CC="$CC" + + + + + +# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: +if test x"$ax_pthread_ok" = xyes; then + +$as_echo "#define HAVE_PTHREAD 1" >>confdefs.h + + : +else + ax_pthread_ok=no + +fi +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + +fi + +if (test $ax_pthread_ok = yes); then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: <<< Configuring library with pthread support >>>" >&5 +$as_echo "<<< Configuring library with pthread support >>>" >&6; } + libmesh_optional_INCLUDES="$PTHREAD_CFLAGS $libmesh_optional_INCLUDES" + libmesh_optional_LIBS="$PTHREAD_LIBS $libmesh_optional_LIBS" +fi +# ------------------------------------------------------------- # ------------------------------------------------------------- diff --git a/contrib/Makefile.in b/contrib/Makefile.in index 6da9ac54c4a..409506d3583 100644 --- a/contrib/Makefile.in +++ b/contrib/Makefile.in @@ -180,7 +180,7 @@ DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -537,6 +537,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -586,6 +589,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/boost/include/Makefile.in b/contrib/boost/include/Makefile.in index 906b9d96194..dc7df7bee02 100644 --- a/contrib/boost/include/Makefile.in +++ b/contrib/boost/include/Makefile.in @@ -59,7 +59,7 @@ DIST_COMMON = $(am__nobase_include_HEADERS_DIST) $(srcdir)/Makefile.am \ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -573,6 +573,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -622,6 +625,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/eigen/3.1.3/Makefile.in b/contrib/eigen/3.1.3/Makefile.in index 32da94902a1..2a90f35a36b 100644 --- a/contrib/eigen/3.1.3/Makefile.in +++ b/contrib/eigen/3.1.3/Makefile.in @@ -60,7 +60,7 @@ DIST_COMMON = $(nobase_include_HEADERS) $(srcdir)/Makefile.am \ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -318,6 +318,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -367,6 +370,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/exodusii/5.22b/exodus/Makefile.in b/contrib/exodusii/5.22b/exodus/Makefile.in index 92d1caaa002..eaed8d3509e 100644 --- a/contrib/exodusii/5.22b/exodus/Makefile.in +++ b/contrib/exodusii/5.22b/exodus/Makefile.in @@ -73,7 +73,7 @@ subdir = contrib/exodusii/v5.22/exodus ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -2205,6 +2205,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -2254,6 +2257,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/exodusii/5.22b/nemesis/Makefile.in b/contrib/exodusii/5.22b/nemesis/Makefile.in index 93ba42ddbb5..42ad18c8484 100644 --- a/contrib/exodusii/5.22b/nemesis/Makefile.in +++ b/contrib/exodusii/5.22b/nemesis/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/nemesis/v5.22/nemesis ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -374,6 +374,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -423,6 +426,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/exodusii/Lib/Makefile.in b/contrib/exodusii/Lib/Makefile.in index 6b05891abab..8c716ee6aec 100644 --- a/contrib/exodusii/Lib/Makefile.in +++ b/contrib/exodusii/Lib/Makefile.in @@ -64,7 +64,7 @@ subdir = contrib/exodusii/v5.09 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -1060,6 +1060,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -1109,6 +1112,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/fparser/Makefile.in b/contrib/fparser/Makefile.in index 3cfa6a42251..f70bda26441 100644 --- a/contrib/fparser/Makefile.in +++ b/contrib/fparser/Makefile.in @@ -73,7 +73,7 @@ DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -510,6 +510,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -559,6 +562,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/fparser/extrasrc/Makefile.in b/contrib/fparser/extrasrc/Makefile.in index 47b60961374..3fef229d271 100644 --- a/contrib/fparser/extrasrc/Makefile.in +++ b/contrib/fparser/extrasrc/Makefile.in @@ -60,7 +60,7 @@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -287,6 +287,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -336,6 +339,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/gmv/Makefile.in b/contrib/gmv/Makefile.in index 31e3fb429da..26b6e35fd6f 100644 --- a/contrib/gmv/Makefile.in +++ b/contrib/gmv/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/gmv ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -369,6 +369,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -418,6 +421,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/gzstream/Makefile.in b/contrib/gzstream/Makefile.in index 2a35ffa92ff..82c99a10b4e 100644 --- a/contrib/gzstream/Makefile.in +++ b/contrib/gzstream/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/gzstream ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -391,6 +391,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -440,6 +443,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/laspack/Makefile.in b/contrib/laspack/Makefile.in index f79aced1247..bb511f7e699 100644 --- a/contrib/laspack/Makefile.in +++ b/contrib/laspack/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/laspack ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -429,6 +429,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -478,6 +481,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/libHilbert/Makefile.in b/contrib/libHilbert/Makefile.in index df46fa3ad86..9de0543e658 100644 --- a/contrib/libHilbert/Makefile.in +++ b/contrib/libHilbert/Makefile.in @@ -64,7 +64,7 @@ subdir = contrib/libHilbert ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -432,6 +432,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -481,6 +484,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/metis/Makefile.in b/contrib/metis/Makefile.in index cd9ee8dffe0..d9e03a907d1 100644 --- a/contrib/metis/Makefile.in +++ b/contrib/metis/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/metis ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -666,6 +666,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -715,6 +718,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/nanoflann/Makefile.in b/contrib/nanoflann/Makefile.in index 6deb735e080..739e399664e 100644 --- a/contrib/nanoflann/Makefile.in +++ b/contrib/nanoflann/Makefile.in @@ -63,7 +63,7 @@ DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -399,6 +399,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -448,6 +451,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/nemesis/Lib/Makefile.in b/contrib/nemesis/Lib/Makefile.in index 96bc56c48e4..e1257ff5701 100644 --- a/contrib/nemesis/Lib/Makefile.in +++ b/contrib/nemesis/Lib/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/nemesis/v3.09 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -529,6 +529,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -578,6 +581,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/netcdf/Lib/Makefile.in b/contrib/netcdf/Lib/Makefile.in index 6f86b6cc14a..81d489a9ee1 100644 --- a/contrib/netcdf/Lib/Makefile.in +++ b/contrib/netcdf/Lib/Makefile.in @@ -64,7 +64,7 @@ subdir = contrib/netcdf/v3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -432,6 +432,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -481,6 +484,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/parmetis/Makefile.in b/contrib/parmetis/Makefile.in index 0575d75eecf..8fffc9e0f2d 100644 --- a/contrib/parmetis/Makefile.in +++ b/contrib/parmetis/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/parmetis ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -640,6 +640,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -689,6 +692,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/sfcurves/Makefile.in b/contrib/sfcurves/Makefile.in index de5ff40dbe2..c0190447e1d 100644 --- a/contrib/sfcurves/Makefile.in +++ b/contrib/sfcurves/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/sfcurves ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -379,6 +379,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -428,6 +431,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/tecplot/binary/Makefile.in b/contrib/tecplot/binary/Makefile.in index 447172ca637..59fab6c94f7 100644 --- a/contrib/tecplot/binary/Makefile.in +++ b/contrib/tecplot/binary/Makefile.in @@ -58,7 +58,7 @@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -364,6 +364,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -413,6 +416,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/tecplot/tecio/Makefile.in b/contrib/tecplot/tecio/Makefile.in index b6fe2ea285d..9f5a00a00d8 100644 --- a/contrib/tecplot/tecio/Makefile.in +++ b/contrib/tecplot/tecio/Makefile.in @@ -63,7 +63,7 @@ subdir = contrib/tecplot/tecio ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -513,6 +513,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -562,6 +565,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/tetgen/Makefile.in b/contrib/tetgen/Makefile.in index 52495b7adbd..2ebfdaca0bc 100644 --- a/contrib/tetgen/Makefile.in +++ b/contrib/tetgen/Makefile.in @@ -64,7 +64,7 @@ subdir = contrib/tetgen ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -399,6 +399,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -448,6 +451,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/contrib/triangle/Makefile.in b/contrib/triangle/Makefile.in index 454209f4fe9..23d4bdbe990 100644 --- a/contrib/triangle/Makefile.in +++ b/contrib/triangle/Makefile.in @@ -64,7 +64,7 @@ subdir = contrib/triangle ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -399,6 +399,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -448,6 +451,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/Makefile.in b/examples/Makefile.in index 5bb58f65ad7..7728ce98fa6 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -56,7 +56,7 @@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -352,6 +352,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -401,6 +404,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adaptivity/adaptivity_ex1/Makefile.in b/examples/adaptivity/adaptivity_ex1/Makefile.in index b07524ff202..4ff678726bc 100644 --- a/examples/adaptivity/adaptivity_ex1/Makefile.in +++ b/examples/adaptivity/adaptivity_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/adaptivity/adaptivity_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adaptivity/adaptivity_ex2/Makefile.in b/examples/adaptivity/adaptivity_ex2/Makefile.in index 4951d36ea80..1a347ac843a 100644 --- a/examples/adaptivity/adaptivity_ex2/Makefile.in +++ b/examples/adaptivity/adaptivity_ex2/Makefile.in @@ -69,7 +69,7 @@ subdir = examples/adaptivity/adaptivity_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -448,6 +448,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -497,6 +500,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adaptivity/adaptivity_ex3/Makefile.in b/examples/adaptivity/adaptivity_ex3/Makefile.in index c0e2a514d17..ed7dadc4930 100644 --- a/examples/adaptivity/adaptivity_ex3/Makefile.in +++ b/examples/adaptivity/adaptivity_ex3/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/adaptivity/adaptivity_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -440,6 +440,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -489,6 +492,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adaptivity/adaptivity_ex4/Makefile.in b/examples/adaptivity/adaptivity_ex4/Makefile.in index b28ff714bff..a0e9cf5d5cd 100644 --- a/examples/adaptivity/adaptivity_ex4/Makefile.in +++ b/examples/adaptivity/adaptivity_ex4/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/adaptivity/adaptivity_ex4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -439,6 +439,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -488,6 +491,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adaptivity/adaptivity_ex5/Makefile.in b/examples/adaptivity/adaptivity_ex5/Makefile.in index 13beb2bff94..fc3ccdd658c 100644 --- a/examples/adaptivity/adaptivity_ex5/Makefile.in +++ b/examples/adaptivity/adaptivity_ex5/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/adaptivity/adaptivity_ex5 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -444,6 +444,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -493,6 +496,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adjoints/adjoints_ex1/Makefile.in b/examples/adjoints/adjoints_ex1/Makefile.in index dfbe945c771..d2d1433a70f 100644 --- a/examples/adjoints/adjoints_ex1/Makefile.in +++ b/examples/adjoints/adjoints_ex1/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/adjoints/adjoints_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -498,6 +498,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -547,6 +550,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adjoints/adjoints_ex2/Makefile.in b/examples/adjoints/adjoints_ex2/Makefile.in index 4c0db8d277f..dfe611a8105 100644 --- a/examples/adjoints/adjoints_ex2/Makefile.in +++ b/examples/adjoints/adjoints_ex2/Makefile.in @@ -69,7 +69,7 @@ subdir = examples/adjoints/adjoints_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -486,6 +486,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -535,6 +538,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adjoints/adjoints_ex3/Makefile.in b/examples/adjoints/adjoints_ex3/Makefile.in index 73470c18ace..381a0240de5 100644 --- a/examples/adjoints/adjoints_ex3/Makefile.in +++ b/examples/adjoints/adjoints_ex3/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/adjoints/adjoints_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -498,6 +498,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -547,6 +550,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adjoints/adjoints_ex4/Makefile.in b/examples/adjoints/adjoints_ex4/Makefile.in index d63f4ffeafe..1766eddbdcf 100644 --- a/examples/adjoints/adjoints_ex4/Makefile.in +++ b/examples/adjoints/adjoints_ex4/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/adjoints/adjoints_ex4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -498,6 +498,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -547,6 +550,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/adjoints/adjoints_ex5/Makefile.in b/examples/adjoints/adjoints_ex5/Makefile.in index 866ea7c2e81..cb6b25aa6df 100644 --- a/examples/adjoints/adjoints_ex5/Makefile.in +++ b/examples/adjoints/adjoints_ex5/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/adjoints/adjoints_ex5 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -498,6 +498,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -547,6 +550,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/eigenproblems/eigenproblems_ex1/Makefile.in b/examples/eigenproblems/eigenproblems_ex1/Makefile.in index 24ab4845a8f..fbd3941cab9 100644 --- a/examples/eigenproblems/eigenproblems_ex1/Makefile.in +++ b/examples/eigenproblems/eigenproblems_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/eigenproblems/eigenproblems_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/eigenproblems/eigenproblems_ex2/Makefile.in b/examples/eigenproblems/eigenproblems_ex2/Makefile.in index 485d4b2e573..ab4099342e5 100644 --- a/examples/eigenproblems/eigenproblems_ex2/Makefile.in +++ b/examples/eigenproblems/eigenproblems_ex2/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/eigenproblems/eigenproblems_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/eigenproblems/eigenproblems_ex3/Makefile.in b/examples/eigenproblems/eigenproblems_ex3/Makefile.in index f7af2860a66..5dd676fcc5d 100644 --- a/examples/eigenproblems/eigenproblems_ex3/Makefile.in +++ b/examples/eigenproblems/eigenproblems_ex3/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/eigenproblems/eigenproblems_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -440,6 +440,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -489,6 +492,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/fem_system/fem_system_ex1/Makefile.in b/examples/fem_system/fem_system_ex1/Makefile.in index da2595d7381..eaac95d1642 100644 --- a/examples/fem_system/fem_system_ex1/Makefile.in +++ b/examples/fem_system/fem_system_ex1/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/fem_system/fem_system_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -463,6 +463,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -512,6 +515,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/fem_system/fem_system_ex2/Makefile.in b/examples/fem_system/fem_system_ex2/Makefile.in index 9d55a61e654..aca289b93c6 100644 --- a/examples/fem_system/fem_system_ex2/Makefile.in +++ b/examples/fem_system/fem_system_ex2/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/fem_system/fem_system_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -473,6 +473,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -522,6 +525,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/introduction/introduction_ex1/Makefile.in b/examples/introduction/introduction_ex1/Makefile.in index ba86e787049..7c9bdb2a8ef 100644 --- a/examples/introduction/introduction_ex1/Makefile.in +++ b/examples/introduction/introduction_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/introduction/introduction_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/introduction/introduction_ex2/Makefile.in b/examples/introduction/introduction_ex2/Makefile.in index ef10e48cf1a..db2c13ced62 100644 --- a/examples/introduction/introduction_ex2/Makefile.in +++ b/examples/introduction/introduction_ex2/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/introduction/introduction_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/introduction/introduction_ex3/Makefile.in b/examples/introduction/introduction_ex3/Makefile.in index 5eb6eb1d66a..ef8324abfb7 100644 --- a/examples/introduction/introduction_ex3/Makefile.in +++ b/examples/introduction/introduction_ex3/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/introduction/introduction_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -444,6 +444,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -493,6 +496,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/introduction/introduction_ex4/Makefile.in b/examples/introduction/introduction_ex4/Makefile.in index 76d369f820f..48dfe41874f 100644 --- a/examples/introduction/introduction_ex4/Makefile.in +++ b/examples/introduction/introduction_ex4/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/introduction/introduction_ex4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -444,6 +444,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -493,6 +496,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/introduction/introduction_ex5/Makefile.in b/examples/introduction/introduction_ex5/Makefile.in index 5db6c1d9f8b..f4fe316ada4 100644 --- a/examples/introduction/introduction_ex5/Makefile.in +++ b/examples/introduction/introduction_ex5/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/introduction/introduction_ex5 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -444,6 +444,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -493,6 +496,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex1/Makefile.in b/examples/miscellaneous/miscellaneous_ex1/Makefile.in index f8194c38e16..b77cdf8c5e2 100644 --- a/examples/miscellaneous/miscellaneous_ex1/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/miscellaneous/miscellaneous_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex2/Makefile.in b/examples/miscellaneous/miscellaneous_ex2/Makefile.in index 492a888981a..7f5b12168fa 100644 --- a/examples/miscellaneous/miscellaneous_ex2/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex2/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/miscellaneous/miscellaneous_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -439,6 +439,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -488,6 +491,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex3/Makefile.in b/examples/miscellaneous/miscellaneous_ex3/Makefile.in index 5948ffc290f..86b949c6791 100644 --- a/examples/miscellaneous/miscellaneous_ex3/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex3/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/miscellaneous/miscellaneous_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -439,6 +439,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -488,6 +491,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex4/Makefile.in b/examples/miscellaneous/miscellaneous_ex4/Makefile.in index cdfeb3f7ace..6234ff19b9b 100644 --- a/examples/miscellaneous/miscellaneous_ex4/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex4/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/miscellaneous/miscellaneous_ex4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex5/Makefile.in b/examples/miscellaneous/miscellaneous_ex5/Makefile.in index 9aacc10433d..afcfdf1f2de 100644 --- a/examples/miscellaneous/miscellaneous_ex5/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex5/Makefile.in @@ -69,7 +69,7 @@ subdir = examples/miscellaneous/miscellaneous_ex5 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -448,6 +448,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -497,6 +500,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex6/Makefile.in b/examples/miscellaneous/miscellaneous_ex6/Makefile.in index 74400e71cb2..1c6f1f562fe 100644 --- a/examples/miscellaneous/miscellaneous_ex6/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex6/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/miscellaneous/miscellaneous_ex6 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex7/Makefile.in b/examples/miscellaneous/miscellaneous_ex7/Makefile.in index 5506c16595a..8e948281710 100644 --- a/examples/miscellaneous/miscellaneous_ex7/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex7/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/miscellaneous/miscellaneous_ex7 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -467,6 +467,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -516,6 +519,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/miscellaneous/miscellaneous_ex8/Makefile.in b/examples/miscellaneous/miscellaneous_ex8/Makefile.in index ea28915ea2c..07f9d3f4754 100644 --- a/examples/miscellaneous/miscellaneous_ex8/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex8/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/miscellaneous/miscellaneous_ex8 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -463,6 +463,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -512,6 +515,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/reduced_basis/reduced_basis_ex1/Makefile.in b/examples/reduced_basis/reduced_basis_ex1/Makefile.in index e558d75071b..1042d30c7a4 100644 --- a/examples/reduced_basis/reduced_basis_ex1/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex1/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/reduced_basis/reduced_basis_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -458,6 +458,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -507,6 +510,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/reduced_basis/reduced_basis_ex2/Makefile.in b/examples/reduced_basis/reduced_basis_ex2/Makefile.in index 8c4dd931634..8a1e68bbcdd 100644 --- a/examples/reduced_basis/reduced_basis_ex2/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex2/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/reduced_basis/reduced_basis_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -458,6 +458,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -507,6 +510,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/reduced_basis/reduced_basis_ex3/Makefile.in b/examples/reduced_basis/reduced_basis_ex3/Makefile.in index 66f9ad8cf5d..83a0305087a 100644 --- a/examples/reduced_basis/reduced_basis_ex3/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex3/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/reduced_basis/reduced_basis_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -458,6 +458,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -507,6 +510,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/reduced_basis/reduced_basis_ex4/Makefile.in b/examples/reduced_basis/reduced_basis_ex4/Makefile.in index 775a13c5130..f6c33b48717 100644 --- a/examples/reduced_basis/reduced_basis_ex4/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex4/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/reduced_basis/reduced_basis_ex4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -463,6 +463,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -512,6 +515,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/reduced_basis/reduced_basis_ex5/Makefile.in b/examples/reduced_basis/reduced_basis_ex5/Makefile.in index 2ee7dc693dc..acaebc87f3d 100644 --- a/examples/reduced_basis/reduced_basis_ex5/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex5/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/reduced_basis/reduced_basis_ex5 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -463,6 +463,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -512,6 +515,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/reduced_basis/reduced_basis_ex6/Makefile.in b/examples/reduced_basis/reduced_basis_ex6/Makefile.in index e832066fdb7..ff7c3a2937c 100644 --- a/examples/reduced_basis/reduced_basis_ex6/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex6/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/reduced_basis/reduced_basis_ex6 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -463,6 +463,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -512,6 +515,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/reduced_basis/reduced_basis_ex7/Makefile.in b/examples/reduced_basis/reduced_basis_ex7/Makefile.in index f7f764a78e1..d0fdc66a7e6 100644 --- a/examples/reduced_basis/reduced_basis_ex7/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex7/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/reduced_basis/reduced_basis_ex7 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -458,6 +458,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -507,6 +510,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/solution_transfer/solution_transfer_ex1/Makefile.in b/examples/solution_transfer/solution_transfer_ex1/Makefile.in index f61a5ad91bb..11a06e1978c 100644 --- a/examples/solution_transfer/solution_transfer_ex1/Makefile.in +++ b/examples/solution_transfer/solution_transfer_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/solution_transfer/solution_transfer_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/subdomains/subdomains_ex1/Makefile.in b/examples/subdomains/subdomains_ex1/Makefile.in index 2b8e5c733e9..2b229233840 100644 --- a/examples/subdomains/subdomains_ex1/Makefile.in +++ b/examples/subdomains/subdomains_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/subdomains/subdomains_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -444,6 +444,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -493,6 +496,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/subdomains/subdomains_ex2/Makefile.in b/examples/subdomains/subdomains_ex2/Makefile.in index 6d22a940b0a..49757f7bb91 100644 --- a/examples/subdomains/subdomains_ex2/Makefile.in +++ b/examples/subdomains/subdomains_ex2/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/subdomains/subdomains_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -444,6 +444,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -493,6 +496,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/systems_of_equations/systems_of_equations_ex1/Makefile.in b/examples/systems_of_equations/systems_of_equations_ex1/Makefile.in index 56a33fd7c9f..e89d0c99c2a 100644 --- a/examples/systems_of_equations/systems_of_equations_ex1/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/systems_of_equations/systems_of_equations_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/systems_of_equations/systems_of_equations_ex2/Makefile.in b/examples/systems_of_equations/systems_of_equations_ex2/Makefile.in index 6f856518a9b..12406c784ea 100644 --- a/examples/systems_of_equations/systems_of_equations_ex2/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex2/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/systems_of_equations/systems_of_equations_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -439,6 +439,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -488,6 +491,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/systems_of_equations/systems_of_equations_ex3/Makefile.in b/examples/systems_of_equations/systems_of_equations_ex3/Makefile.in index c2c12851ee6..33de73eff80 100644 --- a/examples/systems_of_equations/systems_of_equations_ex3/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex3/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/systems_of_equations/systems_of_equations_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/systems_of_equations/systems_of_equations_ex4/Makefile.in b/examples/systems_of_equations/systems_of_equations_ex4/Makefile.in index c7082e72922..1f62f5d099f 100644 --- a/examples/systems_of_equations/systems_of_equations_ex4/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex4/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/systems_of_equations/systems_of_equations_ex4 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/systems_of_equations/systems_of_equations_ex5/Makefile.in b/examples/systems_of_equations/systems_of_equations_ex5/Makefile.in index 9244562f96a..f43249d350a 100644 --- a/examples/systems_of_equations/systems_of_equations_ex5/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex5/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/systems_of_equations/systems_of_equations_ex5 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/systems_of_equations/systems_of_equations_ex6/Makefile.in b/examples/systems_of_equations/systems_of_equations_ex6/Makefile.in index 35cc92bd44f..8b888763733 100644 --- a/examples/systems_of_equations/systems_of_equations_ex6/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex6/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/systems_of_equations/systems_of_equations_ex6 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -434,6 +434,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -483,6 +486,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/transient/transient_ex1/Makefile.in b/examples/transient/transient_ex1/Makefile.in index 3605c84ffd7..fafe29e29ee 100644 --- a/examples/transient/transient_ex1/Makefile.in +++ b/examples/transient/transient_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/transient/transient_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -444,6 +444,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -493,6 +496,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/transient/transient_ex2/Makefile.in b/examples/transient/transient_ex2/Makefile.in index e57bd67f52c..79c5244c495 100644 --- a/examples/transient/transient_ex2/Makefile.in +++ b/examples/transient/transient_ex2/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/transient/transient_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -435,6 +435,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -484,6 +487,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/vector_fe/vector_fe_ex1/Makefile.in b/examples/vector_fe/vector_fe_ex1/Makefile.in index c311a1cf455..4710292cfe5 100644 --- a/examples/vector_fe/vector_fe_ex1/Makefile.in +++ b/examples/vector_fe/vector_fe_ex1/Makefile.in @@ -65,7 +65,7 @@ subdir = examples/vector_fe/vector_fe_ex1 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -442,6 +442,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -491,6 +494,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/vector_fe/vector_fe_ex2/Makefile.in b/examples/vector_fe/vector_fe_ex2/Makefile.in index 51656f28397..c47aed51788 100644 --- a/examples/vector_fe/vector_fe_ex2/Makefile.in +++ b/examples/vector_fe/vector_fe_ex2/Makefile.in @@ -66,7 +66,7 @@ subdir = examples/vector_fe/vector_fe_ex2 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -468,6 +468,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -517,6 +520,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/examples/vector_fe/vector_fe_ex3/Makefile.in b/examples/vector_fe/vector_fe_ex3/Makefile.in index b9a4559e7df..0b061185e26 100644 --- a/examples/vector_fe/vector_fe_ex3/Makefile.in +++ b/examples/vector_fe/vector_fe_ex3/Makefile.in @@ -67,7 +67,7 @@ subdir = examples/vector_fe/vector_fe_ex3 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -469,6 +469,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -518,6 +521,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/include/Makefile.in b/include/Makefile.in index a62b76f9a77..5678b9cf646 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -60,7 +60,7 @@ subdir = include ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -356,6 +356,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -405,6 +408,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/include/libmesh/Makefile.in b/include/libmesh/Makefile.in index 3dfd039b35c..14837509fd7 100644 --- a/include/libmesh/Makefile.in +++ b/include/libmesh/Makefile.in @@ -72,7 +72,7 @@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -299,6 +299,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -348,6 +351,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ diff --git a/include/libmesh_config.h.in b/include/libmesh_config.h.in index d8b82df2005..a8ca2b994d5 100644 --- a/include/libmesh_config.h.in +++ b/include/libmesh_config.h.in @@ -295,6 +295,12 @@ /* Flag indicating whether or not PETSc was compiled with Hypre support */ #undef HAVE_PETSC_HYPRE +/* Define if you have POSIX threads libraries and header files. */ +#undef HAVE_PTHREAD + +/* Have PTHREAD_PRIO_INHERIT. */ +#undef HAVE_PTHREAD_PRIO_INHERIT + /* Define to 1 if you have the header file. */ #undef HAVE_RPC_RPC_H @@ -463,6 +469,10 @@ /* size of processor_id */ #undef PROCESSOR_ID_BYTES +/* Define to necessary symbol if this constant uses a non-standard name on + your system. */ +#undef PTHREAD_CREATE_JOINABLE + /* Flag indicating if the library should keep names in libMesh namespace */ #undef REQUIRE_SEPARATE_NAMESPACE diff --git a/m4/libmesh_optional_packages.m4 b/m4/libmesh_optional_packages.m4 index 874e8f6cb18..0cee22b4e5c 100644 --- a/m4/libmesh_optional_packages.m4 +++ b/m4/libmesh_optional_packages.m4 @@ -129,6 +129,25 @@ if (test $enabletbb = yes); then fi # ------------------------------------------------------------- +# ------------------------------------------------------------- +# Pthread support -- enabled by default +# ------------------------------------------------------------- +AC_ARG_ENABLE(pthreads, + AC_HELP_STRING([--enable-pthreads], + [Build with pthread support]), + enablepthreads=$enableval, + enablepthreads=yes) + +if (test "$enablepthreads" != no) ; then + AX_PTHREAD +fi + +if (test $ax_pthread_ok = yes); then + AC_MSG_RESULT(<<< Configuring library with pthread support >>>) + libmesh_optional_INCLUDES="$PTHREAD_CFLAGS $libmesh_optional_INCLUDES" + libmesh_optional_LIBS="$PTHREAD_LIBS $libmesh_optional_LIBS" +fi +# ------------------------------------------------------------- # ------------------------------------------------------------- diff --git a/m4/threads.m4 b/m4/threads.m4 index 2ac7f4a019e..6af006b5f5a 100644 --- a/m4/threads.m4 +++ b/m4/threads.m4 @@ -26,6 +26,33 @@ else fi ]) +# ------------------------------------------------------------------------------ +# Check to see if the compiler can compile a test program using +# pthreads +# ------------------------------------------------------------------------------ +AC_DEFUN([ACX_PTHREAD], +[AC_CACHE_CHECK(whether the compiler supports pthreads, +ac_cv_pthread_thread, +[AC_LANG_SAVE + AC_LANG_CPLUSPLUS + AC_TRY_COMPILE([#include ], +[ + pthread_t thread; + pthread_join(thread, NULL); +], + ac_cv_pthread_thread=yes, ac_cv_pthread_thread=no) + AC_LANG_RESTORE +]) +if test "$ac_cv_pthread_thread" = yes; then + AC_DEFINE(HAVE_PTHREAD_THREAD,1, + [define if the compiler supports pthreads]) + [$1] +else + false + [$2] +fi +]) + # ------------------------------------------------------------------------------ # Check to see if the compiler can invoke the TBB to compile a diff --git a/tests/Makefile.in b/tests/Makefile.in index 240325b1ea6..bdc5089fc62 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -65,7 +65,7 @@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ac_cxx_rtti.m4 \ $(top_srcdir)/m4/ax_boost_base.m4 \ - $(top_srcdir)/m4/ax_openmp.m4 \ + $(top_srcdir)/m4/ax_openmp.m4 $(top_srcdir)/m4/ax_pthread.m4 \ $(top_srcdir)/m4/ax_split_version.m4 \ $(top_srcdir)/m4/ax_tls.m4 $(top_srcdir)/m4/backtrace.m4 \ $(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/compiler.m4 \ @@ -498,6 +498,9 @@ PETSC_DIR = @PETSC_DIR@ PETSC_FC_INCLUDES = @PETSC_FC_INCLUDES@ PKG_CONFIG = @PKG_CONFIG@ PROFILING_FLAGS = @PROFILING_FLAGS@ +PTHREAD_CC = @PTHREAD_CC@ +PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ +PTHREAD_LIBS = @PTHREAD_LIBS@ PWD = @PWD@ RANLIB = @RANLIB@ RPATHFLAG = @RPATHFLAG@ @@ -547,6 +550,7 @@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ +ax_pthread_config = @ax_pthread_config@ bindir = @bindir@ build = @build@ build_alias = @build_alias@