Hi! Since two serious bugs have been fixed, it would be nice to make a bugfix-only release (1.3.9 and 1.4.1). If anyone has objections, or some patches, or problems/issues to be resolved first, please let me know. Best regards, Alexei -- All science is either physics or stamp collecting.
Hi, Alexei Sheplyakov schrieb:
Since two serious bugs have been fixed, it would be nice to make a bugfix-only release (1.3.9 and 1.4.1). If anyone has objections, or some patches, or problems/issues to be resolved first, please let me know.
good idea! I will have a look at all the pending patches tomorrow and then probably tomorrow evening I will roll the releases. Regards, Jens
Hello!
I will have a look at all the pending patches tomorrow and then probably tomorrow evening I will roll the releases.
I have some small patches too. I've already posted this one, but it got lost for some reason: [PATCH] build: really fix macro checking for version of libreadline. This helps to detect (and reject) non-GNU versions of libreadline, so that build on Mac OS X won't fail. --- acinclude.m4 | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 64f4ec3..9fe93f6 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -26,7 +26,7 @@ int main() return 0; }], [ dnl Some non-GNU readline implementations have non-numeric rl_library_version -ginac_cv_rlversion=`sed -e 's/[^0-9.]//g' 'conftest.out'`], [ ginac_cv_rlversion='unknown'], [ ginac_cv_rlversion='4.2'])]) +ginac_cv_rlversion=`sed -e 's/[[^0-9.]]//g' 'conftest.out'`], [ ginac_cv_rlversion='unknown'], [ ginac_cv_rlversion='4.2'])]) if test -z "$ginac_cv_rlversion"; then GINAC_WARNING([Unsupported version of libreadline.]) ginac_cv_rlversion='unknown' -- 1.5.3.2 Best regards, Alexei -- All science is either physics or stamp collecting.
[PATCH] INSTALL: do not mention nonexisting autogen.sh (GiNaC 1.3) That file was removed a long time ago, so... --- INSTALL | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/INSTALL b/INSTALL index 2c60d2d..1fda652 100644 --- a/INSTALL +++ b/INSTALL @@ -60,9 +60,8 @@ library works correctly you can use $ make check -The "configure" script (and "autogen.sh", which invokes "configure") can be -given a number of options to enable and disable various features. For a -complete list, type: +The "configure" script can be given a number of options to enable and +disable various features. For a complete list, type: $ ./configure --help -- 1.5.3.2 1.4 (and HEAD) branches do not need this patch. Best regards, Alexei -- All science is either physics or stamp collecting.
participants (2)
-
Alexei Sheplyakov
-
Jens Vollinga