From 6374a3a1ffb935443c56f09b371b11cf982a7e28 Mon Sep 17 00:00:00 2001 From: Martin Reinecke Date: Thu, 20 May 2021 12:38:51 +0000 Subject: [PATCH 1/3] Add deprecation notice --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index c526224..c9f64e4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ +NOTICE +====== + +Active development of this package has stopped. The package will receive bug fixes +if necessary, but otherwise the code has been integrated into the `ducc0` +package (https://gitlab.mpcdf.mpg.de/mtr/ducc), and further development is +taking place there. + +Please prefer `ducc0` over `libsharp2` if you are starting a new project! + # Libsharp2 Library for efficient spherical harmonic transforms at arbitrary spins, From 3d376d9e8c7a49f2747ab057da91e16f3ffa39b8 Mon Sep 17 00:00:00 2001 From: Martin Reinecke Date: Sun, 22 May 2022 09:38:27 +0200 Subject: [PATCH 2/3] update configure.ac --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 3b40dc2..9503fc1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libsharp2], [1.0.0]) +AC_INIT([libsharp2],[1.0.0]) AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror]) AM_MAINTAINER_MODE([enable]) @@ -20,13 +20,13 @@ dnl m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -AC_PROG_CC_C99 +m4_version_prereq(2.70, [AC_PROG_CC], [AC_PROG_CC_C99]) AC_OPENMP # add math library LIBS="-lm" -AC_PROG_LIBTOOL +LT_INIT tmpval=`echo $CFLAGS | grep -c '\-DMULTIARCH'` AM_CONDITIONAL([HAVE_MULTIARCH], [test $tmpval -gt 0]) From 004b3aea9afe9646d79da2c0e7981409586a3714 Mon Sep 17 00:00:00 2001 From: Martin Reinecke Date: Thu, 29 Sep 2022 14:59:32 +0200 Subject: [PATCH 3/3] fix typo --- test/sharp2_testsuite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sharp2_testsuite.c b/test/sharp2_testsuite.c index 0e3302a..46390a4 100644 --- a/test/sharp2_testsuite.c +++ b/test/sharp2_testsuite.c @@ -520,7 +520,7 @@ static void do_sht (sharp_geom_info *ginfo, sharp_alm_info *ainfo, { #ifdef USE_MPI sharp_execute_mpi(MPI_COMM_WORLD,SHARP_MAP2ALM,spin,&alm[itrans*ncomp],&map[itrans*ncomp],ginfo, - ainfo,SHARP_DP|SHARP_ADD,&ttm2a,op_&tom2a); + ainfo,SHARP_DP|SHARP_ADD,&ttm2a,&tom2a); #else sharp_execute(SHARP_MAP2ALM,spin,&alm[itrans*ncomp],&map[itrans*ncomp],ginfo,ainfo, SHARP_DP|SHARP_ADD,&ttm2a,&tom2a);