From: dauti <da...@us...> - 2025-08-06 19:09:36
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Maxima CAS". The branch, master has been updated via 7045578f63bd7247741c394dc944d1a3520348ca (commit) from d438976270b60a490b9c8e1e9c03df329ca12b96 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 7045578f63bd7247741c394dc944d1a3520348ca Author: Wolfgang Dautermann <da...@us...> Date: Wed Aug 6 21:07:21 2025 +0200 Correct ABCL (included/not included) in the Lispselector (Windows). One minimal glitch, the button for ABCL was shown in the Lispselector TCL program, when it was not compiled in. I have included that in the Windows installer for 5.48.1. diff --git a/crosscompile-windows/CMakeLists.txt b/crosscompile-windows/CMakeLists.txt index e1f81d4d6..f2aacf535 100644 --- a/crosscompile-windows/CMakeLists.txt +++ b/crosscompile-windows/CMakeLists.txt @@ -257,11 +257,11 @@ if(WITH_ABCL) add_subdirectory("abcl/") set(ABCL_CONFIGURE --enable-abcl --with-abcl-jar=${CMAKE_BINARY_DIR}/abcl/abcl-prefix/src/abcl/abcl.jar) set(ABCL_DEPENDS "abcl") - set(ABCL_ENABLED 0) + set(ABCL_ENABLED 1) else() set(ABCL_CONFIGURE "") set(ABCL_DEPENDS "") - set(ABCL_ENABLED 1) + set(ABCL_ENABLED 0) endif() if(WITH_CCL64) ----------------------------------------------------------------------- Summary of changes: crosscompile-windows/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Maxima CAS |