Skip to content

Commit 1517416

Browse files
committed
Run bootstrap.
Refs #2029.
1 parent 6c91536 commit 1517416

File tree

3 files changed

+49
-7
lines changed

3 files changed

+49
-7
lines changed

Makefile.in

+12-1
Original file line numberDiff line numberDiff line change
@@ -6835,7 +6835,8 @@ EXTRA_DIST = reference_elements \
68356835
contrib/tecplot/README \
68366836
contrib/bin/strip_dup_incl_paths.pl \
68376837
contrib/bin/strip_dup_libs.pl \
6838-
CITATION
6838+
CITATION \
6839+
contrib/metaphysicl/README
68396840

68406841
nobase_data_DATA = \
68416842
reference_elements/2D/one_quad.xda \
@@ -35818,6 +35819,16 @@ uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
3581835819
.PRECIOUS: Makefile
3581935820

3582035821

35822+
# If the metaphysicl submodule has not been initialized, throw an
35823+
# error during "make dist". We need the submodule to be properly
35824+
# initalized so that the sources can be copied into the distribution,
35825+
# and trying to do it "on the fly" is too complicated.
35826+
contrib/metaphysicl/README:
35827+
@echo ""
35828+
@echo "Error: You must run git submodule update --init contrib/metaphysicl first"
35829+
@echo ""
35830+
@exit 1
35831+
3582135832
# This rule extends the built-in make install rule, and can
3582235833
# be used to:
3582335834
# when doing 'make install prefix=/other/path', update generated files

configure

+36-5
Original file line numberDiff line numberDiff line change
@@ -38549,17 +38549,48 @@ fi
3854938549

3855038550
if test "x$enableparmetis" = "xyes"; then :
3855138551

38552-
if test "x$build_metis" = "xyes"; then :
3855338552

38554-
PARMETIS_INCLUDE="-I\$(top_srcdir)/contrib/parmetis/include"
38555-
PARMETIS_LIB="\$(EXTERNAL_LIBDIR)/libparmetis\$(libext)"
38553+
if test "x$build_metis" = "xno" && test $petsc_have_parmetis -gt 0; then :
38554+
38555+
38556+
$as_echo "#define HAVE_PARMETIS 1" >>confdefs.h
38557+
38558+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: <<< Configuring library with PETSc Parmetis support >>>" >&5
38559+
$as_echo "<<< Configuring library with PETSc Parmetis support >>>" >&6; }
38560+
38561+
fi
38562+
38563+
if test "x$build_metis" = "xno" && test $petsc_have_parmetis -eq 0; then :
38564+
38565+
PARMETIS_INCLUDE=""
38566+
PARMETIS_LIB=""
38567+
enableparmetis=no
38568+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: <<< PETSc has METIS but no ParMETIS, configuring library without Parmetis support >>>" >&5
38569+
$as_echo "<<< PETSc has METIS but no ParMETIS, configuring library without Parmetis support >>>" >&6; }
3855638570

3855738571
fi
3855838572

38573+
if test "x$build_metis" = "xyes" && test $petsc_have_parmetis -gt 0; then :
38574+
38575+
PARMETIS_INCLUDE=""
38576+
PARMETIS_LIB=""
38577+
enableparmetis=no
38578+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: <<< PETSc has no METIS but it does have ParMETIS, configuring library without Parmetis support >>>" >&5
38579+
$as_echo "<<< PETSc has no METIS but it does have ParMETIS, configuring library without Parmetis support >>>" >&6; }
38580+
38581+
fi
38582+
38583+
if test "x$build_metis" = "xyes" && test $petsc_have_parmetis -eq 0; then :
38584+
38585+
PARMETIS_INCLUDE="-I\$(top_srcdir)/contrib/parmetis/include"
38586+
PARMETIS_LIB="\$(EXTERNAL_LIBDIR)/libparmetis\$(libext)"
38587+
3855938588
$as_echo "#define HAVE_PARMETIS 1" >>confdefs.h
3856038589

38561-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: <<< Configuring library with Parmetis support >>>" >&5
38562-
$as_echo "<<< Configuring library with Parmetis support >>>" >&6; }
38590+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: <<< Configuring library with internal Parmetis support >>>" >&5
38591+
$as_echo "<<< Configuring library with internal Parmetis support >>>" >&6; }
38592+
38593+
fi
3856338594

3856438595
else
3856538596

tests/Makefile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ unit_tests_sources = driver.C test_comm.h stream_redirector.h \
16071607
@LIBMESH_ENABLE_CPPUNIT_TRUE@@LIBMESH_OPT_MODE_TRUE@unit_tests_opt_LDADD = $(top_builddir)/libmesh_opt.la
16081608
@LIBMESH_ENABLE_CPPUNIT_TRUE@TESTS = run_unit_tests.sh
16091609
CLEANFILES = cube_mesh.xda slit_mesh.xda slit_solution.xda out.e \
1610-
mesh_with_soln.e $(am__append_12)
1610+
mesh_with_soln.e elemental_from_nodal.e $(am__append_12)
16111611
all: all-am
16121612

16131613
.SUFFIXES:

0 commit comments

Comments
 (0)