summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-04-22 20:10:44 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-04-22 20:10:44 -0700
commitb0ebf843ce862f8448aad85e61cc1b3727745fd0 (patch)
tree47b934781729c5d2143de03eb8021521771c500f /configure
parent790cbdccac0540d2af12438fc7bccef2e17bc124 (diff)
downloadtxr-b0ebf843ce862f8448aad85e61cc1b3727745fd0.tar.gz
txr-b0ebf843ce862f8448aad85e61cc1b3727745fd0.tar.bz2
txr-b0ebf843ce862f8448aad85e61cc1b3727745fd0.zip
Switch to in-tree mpi directory.
* Makefile (CFLAGS, MPI_OBJS): Refer to mpi directory without version number. (repatch): Target removed. (distclean): Don't try to remove old unpacked tarball mpi directory. * configure (mpi_version, have_quilt, have_patch): Variables removed. (gen_config_make): Do not generate mpi_version make variable. Do not test for quilt or patch. No longer extract MPI tarball or try to apply patches. * mpi-1.8.6.tar.gz: File removed. * mpi-patches: Directory and all files under it removed.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure53
1 files changed, 0 insertions, 53 deletions
diff --git a/configure b/configure
index 7d52c13a..f47973f9 100755
--- a/configure
+++ b/configure
@@ -110,9 +110,6 @@ lit_align=
extra_debugging=
debug_support=y
gen_gc=y
-mpi_version=1.8.6
-have_quilt=
-have_patch=
have_unistd=
have_sys_time=
have_timegm=
@@ -634,9 +631,6 @@ have_posix_sigs := $have_posix_sigs
# do we compile in debug support?
debug_support := $debug_support
-# MPI version
-mpi_version := $mpi_version
-
# EXE suffix
EXE := $exe
@@ -2014,30 +2008,6 @@ fi
$make conftest.clean
#
-# What do we have for patch management.
-#
-
-printf "Checking for quilt ... "
-
-if ! quilt --version > /dev/null 2>&1 ; then
- printf "not found\n"
-else
- printf "found\n"
- have_quilt=y
-fi
-
-printf "Checking for patch ... "
-
-if ! patch --version > /dev/null 2>&1 ; then
- printf "not found\n"
- printf "\npatch tool required!\n\n"
- exit 1
-else
- printf "found\n"
- have_patch=y
-fi
-
-#
# Function to apply patches.
#
apply_patches()
@@ -2056,29 +2026,6 @@ apply_patches()
}
#
-# Try to extract MPI if not already.
-#
-
-printf "Extracting MPI ... "
-
-if [ -e mpi-${mpi_version} ] ; then
- printf "already extracted\n"
-else
- tar -xzf $top_srcdir/mpi-${mpi_version}.tar.gz
- printf "\n"
- printf "Symlinking MPI patches ...\n"
- ln -sf $top_srcdir/mpi-patches mpi-${mpi_version}/patches
- printf "Applying MPI patches ...\n"
- if [ -n "$have_quilt" ] ; then
- ( cd mpi-${mpi_version}/patches ;
- if [ -e series ] ; then quilt push -a ; else echo "no patches" ; fi )
- else
- ( cd mpi-${mpi_version} ;
- apply_patches )
- fi
-fi
-
-#
# Some final blurbs into config.h
#