Skip to content

Commit

Permalink
fix for MPI-PT Comex (#350)
Browse files Browse the repository at this point in the history
* fix for #349

* fix as suggested in #349 (comment)

* fetch config.guess/sub from web.archive.org if git.savannah.gnu.org is MIA
  • Loading branch information
edoapra authored Sep 13, 2024
1 parent aa0f8d4 commit 1c99ef7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion comex/src-mpi-pt/comex_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions travis/install-autotools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down

0 comments on commit 1c99ef7

Please sign in to comment.