From 055e8cf7a557496697ff57df62d3ba83e57126a1 Mon Sep 17 00:00:00 2001 From: "Benjamin S. Kirk" Date: Sun, 10 Mar 2013 19:07:09 -0500 Subject: [PATCH] prevnt using tbb:thread when TBB configuration has failed --- Makefile.in | 1 + configure | 9 +++++++++ contrib/Makefile.in | 1 + contrib/boost/include/Makefile.in | 1 + contrib/eigen/3.1.2/Makefile.in | 1 + contrib/exodusii/5.22b/exodus/cbind/Makefile.in | 1 + contrib/exodusii/5.22b/nemesis/Makefile.in | 1 + contrib/exodusii/Lib/Makefile.in | 1 + contrib/fparser/Makefile.in | 1 + contrib/fparser/extrasrc/Makefile.in | 1 + contrib/gmv/Makefile.in | 1 + contrib/gzstream/Makefile.in | 1 + contrib/laspack/Makefile.in | 1 + contrib/libHilbert/Makefile.in | 1 + contrib/metis/Makefile.in | 1 + contrib/nanoflann/Makefile.in | 1 + contrib/nemesis/Lib/Makefile.in | 1 + contrib/netcdf/Lib/Makefile.in | 1 + contrib/parmetis/Makefile.in | 1 + contrib/sfcurves/Makefile.in | 1 + contrib/tecplot/binary/Makefile.in | 1 + contrib/tecplot/tecio/Makefile.in | 1 + contrib/tetgen/Makefile.in | 1 + contrib/triangle/Makefile.in | 1 + examples/Makefile.in | 1 + examples/adaptivity/adaptivity_ex1/Makefile.in | 1 + examples/adaptivity/adaptivity_ex2/Makefile.in | 1 + examples/adaptivity/adaptivity_ex3/Makefile.in | 1 + examples/adaptivity/adaptivity_ex4/Makefile.in | 1 + examples/adaptivity/adaptivity_ex5/Makefile.in | 1 + examples/adjoints/adjoints_ex1/Makefile.in | 1 + examples/adjoints/adjoints_ex2/Makefile.in | 1 + examples/adjoints/adjoints_ex3/Makefile.in | 1 + examples/adjoints/adjoints_ex4/Makefile.in | 1 + examples/adjoints/adjoints_ex5/Makefile.in | 1 + examples/eigenproblems/eigenproblems_ex1/Makefile.in | 1 + examples/eigenproblems/eigenproblems_ex2/Makefile.in | 1 + examples/eigenproblems/eigenproblems_ex3/Makefile.in | 1 + examples/fem_system/fem_system_ex1/Makefile.in | 1 + examples/fem_system/fem_system_ex2/Makefile.in | 1 + examples/introduction/introduction_ex1/Makefile.in | 1 + examples/introduction/introduction_ex2/Makefile.in | 1 + examples/introduction/introduction_ex3/Makefile.in | 1 + examples/introduction/introduction_ex4/Makefile.in | 1 + examples/introduction/introduction_ex5/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex1/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex2/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex3/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex4/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex5/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex6/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex7/Makefile.in | 1 + examples/miscellaneous/miscellaneous_ex8/Makefile.in | 1 + examples/reduced_basis/reduced_basis_ex1/Makefile.in | 1 + examples/reduced_basis/reduced_basis_ex2/Makefile.in | 1 + examples/reduced_basis/reduced_basis_ex3/Makefile.in | 1 + examples/reduced_basis/reduced_basis_ex4/Makefile.in | 1 + examples/reduced_basis/reduced_basis_ex5/Makefile.in | 1 + examples/reduced_basis/reduced_basis_ex6/Makefile.in | 1 + examples/reduced_basis/reduced_basis_ex7/Makefile.in | 1 + .../solution_transfer/solution_transfer_ex1/Makefile.in | 1 + examples/subdomains/subdomains_ex1/Makefile.in | 1 + examples/subdomains/subdomains_ex2/Makefile.in | 1 + .../systems_of_equations_ex1/Makefile.in | 1 + .../systems_of_equations_ex2/Makefile.in | 1 + .../systems_of_equations_ex3/Makefile.in | 1 + .../systems_of_equations_ex4/Makefile.in | 1 + .../systems_of_equations_ex5/Makefile.in | 1 + .../systems_of_equations_ex6/Makefile.in | 1 + examples/transient/transient_ex1/Makefile.in | 1 + examples/transient/transient_ex2/Makefile.in | 1 + examples/vector_fe/vector_fe_ex1/Makefile.in | 1 + examples/vector_fe/vector_fe_ex2/Makefile.in | 1 + examples/vector_fe/vector_fe_ex3/Makefile.in | 1 + include/Makefile.in | 1 + include/libmesh/Makefile.in | 1 + m4/threads.m4 | 6 ++++++ tests/Makefile.in | 1 + 78 files changed, 91 insertions(+) diff --git a/Makefile.in b/Makefile.in index c65eb587588..56bfe886a9e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4147,6 +4147,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/configure b/configure index 959219fa6bc..e7ece4958d3 100755 --- a/configure +++ b/configure @@ -799,6 +799,7 @@ SLEPC_INCLUDE SLEPC_DIR LIBMESH_ENABLE_PETSC_FALSE LIBMESH_ENABLE_PETSC_TRUE +enablepetsc MPI_INCLUDES_PATHS MPI_INCLUDES_PATH MPI_LIBS_PATHS @@ -29074,6 +29075,8 @@ fi fi fi + + if (test $enablempi != no) ; then libmesh_optional_INCLUDES="$MPI_INCLUDES_PATHS $libmesh_optional_INCLUDES" libmesh_optional_LIBS="$MPI_LIBS_PATHS $MPI_LIBS $libmesh_optional_LIBS" @@ -30071,6 +30074,12 @@ CXXFLAGS="$saveCXXFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_tbb_cxx_thread" >&5 $as_echo "$ac_cv_tbb_cxx_thread" >&6; } + +# if we don't have functioning TBB avoid a false positive +if test "x$enabletbb" = "xno"; then + ac_cv_tbb_cxx_thread=no +fi + if test "$ac_cv_tbb_cxx_thread" = yes; then $as_echo "#define HAVE_TBB_CXX_THREAD 1" >>confdefs.h diff --git a/contrib/Makefile.in b/contrib/Makefile.in index 60db89b9087..c228803f5ad 100644 --- a/contrib/Makefile.in +++ b/contrib/Makefile.in @@ -598,6 +598,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/boost/include/Makefile.in b/contrib/boost/include/Makefile.in index 2c5587bdccd..83e212248bb 100644 --- a/contrib/boost/include/Makefile.in +++ b/contrib/boost/include/Makefile.in @@ -634,6 +634,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/eigen/3.1.2/Makefile.in b/contrib/eigen/3.1.2/Makefile.in index 3a4b69a52a5..58ea94d0341 100644 --- a/contrib/eigen/3.1.2/Makefile.in +++ b/contrib/eigen/3.1.2/Makefile.in @@ -379,6 +379,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/exodusii/5.22b/exodus/cbind/Makefile.in b/contrib/exodusii/5.22b/exodus/cbind/Makefile.in index 73dfcfbc43d..4160c4aec4d 100644 --- a/contrib/exodusii/5.22b/exodus/cbind/Makefile.in +++ b/contrib/exodusii/5.22b/exodus/cbind/Makefile.in @@ -1996,6 +1996,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/exodusii/5.22b/nemesis/Makefile.in b/contrib/exodusii/5.22b/nemesis/Makefile.in index 4168efd0ad7..c2fc3b52c95 100644 --- a/contrib/exodusii/5.22b/nemesis/Makefile.in +++ b/contrib/exodusii/5.22b/nemesis/Makefile.in @@ -435,6 +435,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/exodusii/Lib/Makefile.in b/contrib/exodusii/Lib/Makefile.in index 59a513b1e6b..28c401d11a4 100644 --- a/contrib/exodusii/Lib/Makefile.in +++ b/contrib/exodusii/Lib/Makefile.in @@ -1121,6 +1121,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/fparser/Makefile.in b/contrib/fparser/Makefile.in index fb8f5f616bc..d024f621496 100644 --- a/contrib/fparser/Makefile.in +++ b/contrib/fparser/Makefile.in @@ -571,6 +571,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/fparser/extrasrc/Makefile.in b/contrib/fparser/extrasrc/Makefile.in index de7ab2174bd..9d42954b8ac 100644 --- a/contrib/fparser/extrasrc/Makefile.in +++ b/contrib/fparser/extrasrc/Makefile.in @@ -348,6 +348,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/gmv/Makefile.in b/contrib/gmv/Makefile.in index 43c2b69c63a..7dd62fb8234 100644 --- a/contrib/gmv/Makefile.in +++ b/contrib/gmv/Makefile.in @@ -430,6 +430,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/gzstream/Makefile.in b/contrib/gzstream/Makefile.in index bd7ae4ef448..f1b652563a6 100644 --- a/contrib/gzstream/Makefile.in +++ b/contrib/gzstream/Makefile.in @@ -452,6 +452,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/laspack/Makefile.in b/contrib/laspack/Makefile.in index b872135a6ed..256483b8b1d 100644 --- a/contrib/laspack/Makefile.in +++ b/contrib/laspack/Makefile.in @@ -490,6 +490,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/libHilbert/Makefile.in b/contrib/libHilbert/Makefile.in index d8f8ec68458..e44f51e100f 100644 --- a/contrib/libHilbert/Makefile.in +++ b/contrib/libHilbert/Makefile.in @@ -493,6 +493,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/metis/Makefile.in b/contrib/metis/Makefile.in index bdf1ea042c7..732b13087bc 100644 --- a/contrib/metis/Makefile.in +++ b/contrib/metis/Makefile.in @@ -691,6 +691,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/nanoflann/Makefile.in b/contrib/nanoflann/Makefile.in index 40ab9a44ee4..92a63dfcf2b 100644 --- a/contrib/nanoflann/Makefile.in +++ b/contrib/nanoflann/Makefile.in @@ -460,6 +460,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/nemesis/Lib/Makefile.in b/contrib/nemesis/Lib/Makefile.in index 1ea8a76db7e..fcafbb7b398 100644 --- a/contrib/nemesis/Lib/Makefile.in +++ b/contrib/nemesis/Lib/Makefile.in @@ -590,6 +590,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/netcdf/Lib/Makefile.in b/contrib/netcdf/Lib/Makefile.in index 498dba0dcef..10249299505 100644 --- a/contrib/netcdf/Lib/Makefile.in +++ b/contrib/netcdf/Lib/Makefile.in @@ -493,6 +493,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/parmetis/Makefile.in b/contrib/parmetis/Makefile.in index 64e7fcfc6d4..b712d60b2f3 100644 --- a/contrib/parmetis/Makefile.in +++ b/contrib/parmetis/Makefile.in @@ -581,6 +581,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/sfcurves/Makefile.in b/contrib/sfcurves/Makefile.in index a3ed04bd53c..3f9ac131497 100644 --- a/contrib/sfcurves/Makefile.in +++ b/contrib/sfcurves/Makefile.in @@ -440,6 +440,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/tecplot/binary/Makefile.in b/contrib/tecplot/binary/Makefile.in index 4b0d09edef3..49aa1bd6855 100644 --- a/contrib/tecplot/binary/Makefile.in +++ b/contrib/tecplot/binary/Makefile.in @@ -425,6 +425,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/tecplot/tecio/Makefile.in b/contrib/tecplot/tecio/Makefile.in index 4f854344c4b..4a12bf0349f 100644 --- a/contrib/tecplot/tecio/Makefile.in +++ b/contrib/tecplot/tecio/Makefile.in @@ -574,6 +574,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/tetgen/Makefile.in b/contrib/tetgen/Makefile.in index 36002d41658..6839df8d3c2 100644 --- a/contrib/tetgen/Makefile.in +++ b/contrib/tetgen/Makefile.in @@ -460,6 +460,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/contrib/triangle/Makefile.in b/contrib/triangle/Makefile.in index edd0358f850..d537d46b44e 100644 --- a/contrib/triangle/Makefile.in +++ b/contrib/triangle/Makefile.in @@ -460,6 +460,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/Makefile.in b/examples/Makefile.in index 6e4b55eb536..b6887ef1e15 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -416,6 +416,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adaptivity/adaptivity_ex1/Makefile.in b/examples/adaptivity/adaptivity_ex1/Makefile.in index 1159915bdb3..61298bf9241 100644 --- a/examples/adaptivity/adaptivity_ex1/Makefile.in +++ b/examples/adaptivity/adaptivity_ex1/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adaptivity/adaptivity_ex2/Makefile.in b/examples/adaptivity/adaptivity_ex2/Makefile.in index 1f132283d64..5f501276066 100644 --- a/examples/adaptivity/adaptivity_ex2/Makefile.in +++ b/examples/adaptivity/adaptivity_ex2/Makefile.in @@ -509,6 +509,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adaptivity/adaptivity_ex3/Makefile.in b/examples/adaptivity/adaptivity_ex3/Makefile.in index 28dd4a7cc63..26d48402f49 100644 --- a/examples/adaptivity/adaptivity_ex3/Makefile.in +++ b/examples/adaptivity/adaptivity_ex3/Makefile.in @@ -501,6 +501,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adaptivity/adaptivity_ex4/Makefile.in b/examples/adaptivity/adaptivity_ex4/Makefile.in index e6054e07055..23c4fd07c34 100644 --- a/examples/adaptivity/adaptivity_ex4/Makefile.in +++ b/examples/adaptivity/adaptivity_ex4/Makefile.in @@ -500,6 +500,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adaptivity/adaptivity_ex5/Makefile.in b/examples/adaptivity/adaptivity_ex5/Makefile.in index 22b0783653e..ce2f0357c1d 100644 --- a/examples/adaptivity/adaptivity_ex5/Makefile.in +++ b/examples/adaptivity/adaptivity_ex5/Makefile.in @@ -505,6 +505,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adjoints/adjoints_ex1/Makefile.in b/examples/adjoints/adjoints_ex1/Makefile.in index 73b2f77e015..cb33f4a7f21 100644 --- a/examples/adjoints/adjoints_ex1/Makefile.in +++ b/examples/adjoints/adjoints_ex1/Makefile.in @@ -559,6 +559,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adjoints/adjoints_ex2/Makefile.in b/examples/adjoints/adjoints_ex2/Makefile.in index 4312445e28f..da9073bb365 100644 --- a/examples/adjoints/adjoints_ex2/Makefile.in +++ b/examples/adjoints/adjoints_ex2/Makefile.in @@ -547,6 +547,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adjoints/adjoints_ex3/Makefile.in b/examples/adjoints/adjoints_ex3/Makefile.in index 46699386f65..8ed4ae74ea6 100644 --- a/examples/adjoints/adjoints_ex3/Makefile.in +++ b/examples/adjoints/adjoints_ex3/Makefile.in @@ -559,6 +559,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adjoints/adjoints_ex4/Makefile.in b/examples/adjoints/adjoints_ex4/Makefile.in index 10201d50415..50e17afbcae 100644 --- a/examples/adjoints/adjoints_ex4/Makefile.in +++ b/examples/adjoints/adjoints_ex4/Makefile.in @@ -559,6 +559,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/adjoints/adjoints_ex5/Makefile.in b/examples/adjoints/adjoints_ex5/Makefile.in index d07f1092ee1..696294076b9 100644 --- a/examples/adjoints/adjoints_ex5/Makefile.in +++ b/examples/adjoints/adjoints_ex5/Makefile.in @@ -559,6 +559,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/eigenproblems/eigenproblems_ex1/Makefile.in b/examples/eigenproblems/eigenproblems_ex1/Makefile.in index 2cfd737e3ac..c526d467dc7 100644 --- a/examples/eigenproblems/eigenproblems_ex1/Makefile.in +++ b/examples/eigenproblems/eigenproblems_ex1/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/eigenproblems/eigenproblems_ex2/Makefile.in b/examples/eigenproblems/eigenproblems_ex2/Makefile.in index 21b51855a4e..a0d05a401e5 100644 --- a/examples/eigenproblems/eigenproblems_ex2/Makefile.in +++ b/examples/eigenproblems/eigenproblems_ex2/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/eigenproblems/eigenproblems_ex3/Makefile.in b/examples/eigenproblems/eigenproblems_ex3/Makefile.in index 6adbaa7912b..13fbe9f33bd 100644 --- a/examples/eigenproblems/eigenproblems_ex3/Makefile.in +++ b/examples/eigenproblems/eigenproblems_ex3/Makefile.in @@ -501,6 +501,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/fem_system/fem_system_ex1/Makefile.in b/examples/fem_system/fem_system_ex1/Makefile.in index c5fe16d583d..ee7256d128c 100644 --- a/examples/fem_system/fem_system_ex1/Makefile.in +++ b/examples/fem_system/fem_system_ex1/Makefile.in @@ -524,6 +524,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/fem_system/fem_system_ex2/Makefile.in b/examples/fem_system/fem_system_ex2/Makefile.in index 9a4dba95153..25cca51afbd 100644 --- a/examples/fem_system/fem_system_ex2/Makefile.in +++ b/examples/fem_system/fem_system_ex2/Makefile.in @@ -534,6 +534,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/introduction/introduction_ex1/Makefile.in b/examples/introduction/introduction_ex1/Makefile.in index 70a734d9972..b24461ccfdc 100644 --- a/examples/introduction/introduction_ex1/Makefile.in +++ b/examples/introduction/introduction_ex1/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/introduction/introduction_ex2/Makefile.in b/examples/introduction/introduction_ex2/Makefile.in index ec4482fee36..04d8cfb4e18 100644 --- a/examples/introduction/introduction_ex2/Makefile.in +++ b/examples/introduction/introduction_ex2/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/introduction/introduction_ex3/Makefile.in b/examples/introduction/introduction_ex3/Makefile.in index 98f53b1ff73..9180cb54a89 100644 --- a/examples/introduction/introduction_ex3/Makefile.in +++ b/examples/introduction/introduction_ex3/Makefile.in @@ -505,6 +505,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/introduction/introduction_ex4/Makefile.in b/examples/introduction/introduction_ex4/Makefile.in index b0f9567110d..aeb2bb2f903 100644 --- a/examples/introduction/introduction_ex4/Makefile.in +++ b/examples/introduction/introduction_ex4/Makefile.in @@ -505,6 +505,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/introduction/introduction_ex5/Makefile.in b/examples/introduction/introduction_ex5/Makefile.in index 5e2c7625825..4562dade8db 100644 --- a/examples/introduction/introduction_ex5/Makefile.in +++ b/examples/introduction/introduction_ex5/Makefile.in @@ -505,6 +505,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex1/Makefile.in b/examples/miscellaneous/miscellaneous_ex1/Makefile.in index a8b381a2680..213fa0fe4c5 100644 --- a/examples/miscellaneous/miscellaneous_ex1/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex1/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex2/Makefile.in b/examples/miscellaneous/miscellaneous_ex2/Makefile.in index eb133d10036..19a3b8496aa 100644 --- a/examples/miscellaneous/miscellaneous_ex2/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex2/Makefile.in @@ -500,6 +500,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex3/Makefile.in b/examples/miscellaneous/miscellaneous_ex3/Makefile.in index 85d1efc4455..1a8d9bc63c2 100644 --- a/examples/miscellaneous/miscellaneous_ex3/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex3/Makefile.in @@ -500,6 +500,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex4/Makefile.in b/examples/miscellaneous/miscellaneous_ex4/Makefile.in index e6c78d9e3df..f591a51359f 100644 --- a/examples/miscellaneous/miscellaneous_ex4/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex4/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex5/Makefile.in b/examples/miscellaneous/miscellaneous_ex5/Makefile.in index 479c59c5842..7accdc0de23 100644 --- a/examples/miscellaneous/miscellaneous_ex5/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex5/Makefile.in @@ -509,6 +509,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex6/Makefile.in b/examples/miscellaneous/miscellaneous_ex6/Makefile.in index f6cf9d8f908..a66a450f5e2 100644 --- a/examples/miscellaneous/miscellaneous_ex6/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex6/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex7/Makefile.in b/examples/miscellaneous/miscellaneous_ex7/Makefile.in index c42d012a3ca..5140a4bc2ab 100644 --- a/examples/miscellaneous/miscellaneous_ex7/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex7/Makefile.in @@ -528,6 +528,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/miscellaneous/miscellaneous_ex8/Makefile.in b/examples/miscellaneous/miscellaneous_ex8/Makefile.in index 240c99f584c..434d0b0543b 100644 --- a/examples/miscellaneous/miscellaneous_ex8/Makefile.in +++ b/examples/miscellaneous/miscellaneous_ex8/Makefile.in @@ -524,6 +524,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/reduced_basis/reduced_basis_ex1/Makefile.in b/examples/reduced_basis/reduced_basis_ex1/Makefile.in index cc71f2b786c..cda50e12882 100644 --- a/examples/reduced_basis/reduced_basis_ex1/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex1/Makefile.in @@ -519,6 +519,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/reduced_basis/reduced_basis_ex2/Makefile.in b/examples/reduced_basis/reduced_basis_ex2/Makefile.in index 47a1e75f308..09597bb0cf2 100644 --- a/examples/reduced_basis/reduced_basis_ex2/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex2/Makefile.in @@ -519,6 +519,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/reduced_basis/reduced_basis_ex3/Makefile.in b/examples/reduced_basis/reduced_basis_ex3/Makefile.in index c30b69e2ee1..a3d487a99cb 100644 --- a/examples/reduced_basis/reduced_basis_ex3/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex3/Makefile.in @@ -519,6 +519,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/reduced_basis/reduced_basis_ex4/Makefile.in b/examples/reduced_basis/reduced_basis_ex4/Makefile.in index 420e9ef3f97..057ef15a250 100644 --- a/examples/reduced_basis/reduced_basis_ex4/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex4/Makefile.in @@ -524,6 +524,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/reduced_basis/reduced_basis_ex5/Makefile.in b/examples/reduced_basis/reduced_basis_ex5/Makefile.in index 412774a167b..63f1f371c7f 100644 --- a/examples/reduced_basis/reduced_basis_ex5/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex5/Makefile.in @@ -524,6 +524,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/reduced_basis/reduced_basis_ex6/Makefile.in b/examples/reduced_basis/reduced_basis_ex6/Makefile.in index 8ff592db24a..85d790c1aeb 100644 --- a/examples/reduced_basis/reduced_basis_ex6/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex6/Makefile.in @@ -524,6 +524,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/reduced_basis/reduced_basis_ex7/Makefile.in b/examples/reduced_basis/reduced_basis_ex7/Makefile.in index fa8e80d09b8..993362b247c 100644 --- a/examples/reduced_basis/reduced_basis_ex7/Makefile.in +++ b/examples/reduced_basis/reduced_basis_ex7/Makefile.in @@ -519,6 +519,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/solution_transfer/solution_transfer_ex1/Makefile.in b/examples/solution_transfer/solution_transfer_ex1/Makefile.in index 5dd8a5ce160..ad5e193fcaa 100644 --- a/examples/solution_transfer/solution_transfer_ex1/Makefile.in +++ b/examples/solution_transfer/solution_transfer_ex1/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/subdomains/subdomains_ex1/Makefile.in b/examples/subdomains/subdomains_ex1/Makefile.in index f271d0e6e09..2e9868d2c9f 100644 --- a/examples/subdomains/subdomains_ex1/Makefile.in +++ b/examples/subdomains/subdomains_ex1/Makefile.in @@ -505,6 +505,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/subdomains/subdomains_ex2/Makefile.in b/examples/subdomains/subdomains_ex2/Makefile.in index daa1faa4be5..0937350671d 100644 --- a/examples/subdomains/subdomains_ex2/Makefile.in +++ b/examples/subdomains/subdomains_ex2/Makefile.in @@ -505,6 +505,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ 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 0a5596be710..d70fa289352 100644 --- a/examples/systems_of_equations/systems_of_equations_ex1/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex1/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ 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 86db6938a23..83429e2ac36 100644 --- a/examples/systems_of_equations/systems_of_equations_ex2/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex2/Makefile.in @@ -500,6 +500,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ 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 e37eda493cd..01f4938d989 100644 --- a/examples/systems_of_equations/systems_of_equations_ex3/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex3/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ 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 df72aa2f57f..ea1808f1eb3 100644 --- a/examples/systems_of_equations/systems_of_equations_ex4/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex4/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ 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 4bed2508e2f..530a7ce900d 100644 --- a/examples/systems_of_equations/systems_of_equations_ex5/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex5/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ 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 8c1becd81fb..f5a863298b8 100644 --- a/examples/systems_of_equations/systems_of_equations_ex6/Makefile.in +++ b/examples/systems_of_equations/systems_of_equations_ex6/Makefile.in @@ -495,6 +495,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/transient/transient_ex1/Makefile.in b/examples/transient/transient_ex1/Makefile.in index 991814e536a..0115c909b92 100644 --- a/examples/transient/transient_ex1/Makefile.in +++ b/examples/transient/transient_ex1/Makefile.in @@ -505,6 +505,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/transient/transient_ex2/Makefile.in b/examples/transient/transient_ex2/Makefile.in index 919af3666fa..1732f705bb8 100644 --- a/examples/transient/transient_ex2/Makefile.in +++ b/examples/transient/transient_ex2/Makefile.in @@ -496,6 +496,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/vector_fe/vector_fe_ex1/Makefile.in b/examples/vector_fe/vector_fe_ex1/Makefile.in index d47427128e8..6c798e2d5c1 100644 --- a/examples/vector_fe/vector_fe_ex1/Makefile.in +++ b/examples/vector_fe/vector_fe_ex1/Makefile.in @@ -503,6 +503,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/vector_fe/vector_fe_ex2/Makefile.in b/examples/vector_fe/vector_fe_ex2/Makefile.in index a59e2661cc0..80eac6061a6 100644 --- a/examples/vector_fe/vector_fe_ex2/Makefile.in +++ b/examples/vector_fe/vector_fe_ex2/Makefile.in @@ -529,6 +529,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/examples/vector_fe/vector_fe_ex3/Makefile.in b/examples/vector_fe/vector_fe_ex3/Makefile.in index af7a3a35c37..bf0cf5ab9dc 100644 --- a/examples/vector_fe/vector_fe_ex3/Makefile.in +++ b/examples/vector_fe/vector_fe_ex3/Makefile.in @@ -530,6 +530,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/include/Makefile.in b/include/Makefile.in index 40a858d111d..e7d70088abe 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -417,6 +417,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/include/libmesh/Makefile.in b/include/libmesh/Makefile.in index 992c05efae4..65c232ab006 100644 --- a/include/libmesh/Makefile.in +++ b/include/libmesh/Makefile.in @@ -360,6 +360,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@ diff --git a/m4/threads.m4 b/m4/threads.m4 index 425dea45716..3bb3c96f473 100644 --- a/m4/threads.m4 +++ b/m4/threads.m4 @@ -47,6 +47,12 @@ ac_cv_tbb_cxx_thread, ] CXXFLAGS="$saveCXXFLAGS" ) + +# if we don't have functioning TBB avoid a false positive +if test "x$enabletbb" = "xno"; then + ac_cv_tbb_cxx_thread=no +fi + if test "$ac_cv_tbb_cxx_thread" = yes; then AC_DEFINE(HAVE_TBB_CXX_THREAD,1, [define if the compiler supports std::thread]) diff --git a/tests/Makefile.in b/tests/Makefile.in index 90f071fc9ae..5af2b199711 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -559,6 +559,7 @@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ enablelegacyincludepaths = @enablelegacyincludepaths@ +enablepetsc = @enablepetsc@ exec_prefix = @exec_prefix@ gitquery = @gitquery@ have_gcov = @have_gcov@