summaryrefslogtreecommitdiffstats
path: root/mpi-patches/shrink-mpi-int
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 /mpi-patches/shrink-mpi-int
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 'mpi-patches/shrink-mpi-int')
-rw-r--r--mpi-patches/shrink-mpi-int18
1 files changed, 0 insertions, 18 deletions
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;