From b0ebf843ce862f8448aad85e61cc1b3727745fd0 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 22 Apr 2015 20:10:44 -0700 Subject: 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. --- mpi-patches/shrink-mpi-int | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 mpi-patches/shrink-mpi-int (limited to 'mpi-patches/shrink-mpi-int') diff --git a/mpi-patches/shrink-mpi-int b/mpi-patches/shrink-mpi-int deleted file mode 100644 index bac2aafb..00000000 --- a/mpi-patches/shrink-mpi-int +++ /dev/null @@ -1,18 +0,0 @@ -Index: mpi-1.8.6/mpi.h -=================================================================== ---- mpi-1.8.6.orig/mpi.h 2011-12-27 14:01:24.628295000 -0800 -+++ mpi-1.8.6/mpi.h 2011-12-27 14:46:02.227842000 -0800 -@@ -72,8 +72,13 @@ - #define MAX_RADIX 64 - - typedef struct { -+#if SIZEOF_INT >= SIZEOF_PTR -+ unsigned int sign : 1; -+ unsigned int alloc : sizeof(int)*CHAR_BIT - 1; -+#else - mp_sign sign; /* sign of this quantity */ - mp_size alloc; /* how many digits allocated */ -+#endif - mp_size used; /* how many digits used */ - mp_digit *dp; /* the digits themselves */ - } mp_int; -- cgit v1.2.3