From 1c99ef7348b93ab50bb49f8f3ce684bb7af8847b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edoardo=20Apr=C3=A0?= Date: Fri, 13 Sep 2024 10:18:08 -0700 Subject: [PATCH] fix for MPI-PT Comex (#350) * fix for https://github.com/GlobalArrays/ga/issues/349 * fix as suggested in https://github.com/GlobalArrays/ga/issues/349#issuecomment-2322077429 * fetch config.guess/sub from web.archive.org if git.savannah.gnu.org is MIA --- comex/src-mpi-pt/comex_impl.h | 2 +- travis/install-autotools.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/comex/src-mpi-pt/comex_impl.h b/comex/src-mpi-pt/comex_impl.h index 3291522b0..6d98d75e7 100644 --- a/comex/src-mpi-pt/comex_impl.h +++ b/comex/src-mpi-pt/comex_impl.h @@ -7,7 +7,7 @@ #include "groups.h" -#define COMEX_MAX_NB_OUTSTANDING 8 +#define COMEX_MAX_NB_OUTSTANDING 256 #define COMEX_MAX_STRIDE_LEVEL 8 #define COMEX_TAG 27624 #define COMEX_STATIC_BUFFER_SIZE (2u*1048576u) diff --git a/travis/install-autotools.sh b/travis/install-autotools.sh index 1549cc281..3cb95f1e9 100755 --- a/travis/install-autotools.sh +++ b/travis/install-autotools.sh @@ -64,7 +64,7 @@ if [ -f config.guess ] ; then echo "config.guess already exists! Using existing copy." else if ! ${download} config.guess 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' ; then - ${download} config.guess 'https://raw.githubusercontent.com/GlobalArrays/autotools/master/config.guess' + ${download} config.guess 'https://web.archive.org/web/20240816170413/http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' fi fi @@ -76,7 +76,7 @@ if [ -f config.sub ] ; then echo "config.sub already exists! Using existing copy." else if ! ${download} config.sub 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' ; then - ${download} config.guess 'https://raw.githubusercontent.com/GlobalArrays/autotools/master/config.guess' + ${download} config.sub 'https://web.archive.org/web/20240816170413/http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' fi fi