about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorArun Isaac2026-09-21 01:36:37 +0100
committerArun Isaac2026-09-23 02:00:51 +0100
commiteb7fee601934f30cc3be7f5ba664e3df1b355853 (patch)
tree1141cb7e75f3b428dddd6647f15e580bfdfb48d7 /configure.ac
parent9a5adade7969ed449903c54c987ef793439bf86a (diff)
downloadguile-xapian-eb7fee601934f30cc3be7f5ba664e3df1b355853.tar.gz
guile-xapian-eb7fee601934f30cc3be7f5ba664e3df1b355853.tar.lz
guile-xapian-eb7fee601934f30cc3be7f5ba664e3df1b355853.zip
Use guile-run64 for tests.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 5a458e2..07e5b57 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 dnl guile-xapian --- Guile bindings for Xapian
-dnl Copyright © 2020–2024 Arun Isaac <arunisaac@systemreboot.net>
+dnl Copyright © 2020–2024, 2026 Arun Isaac <arunisaac@systemreboot.net>
 dnl
 dnl This file is part of guile-xapian.
 dnl
@@ -18,7 +18,7 @@ dnl along with guile-xapian.  If not, see
 dnl <https://www.gnu.org/licenses/>.
 
 AC_INIT([guile-xapian], [0.4.0])
-AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign check-news no-dist-gzip dist-lzip])
+AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign check-news no-dist-gzip dist-lzip])
 AM_SILENT_RULES([yes])
 LT_INIT
 
@@ -33,6 +33,9 @@ GUILE_MODULE_REQUIRED([htmlprag])
 PKG_CHECK_MODULES([XAPIAN], [xapian-core])
 PKG_CHECK_MODULES([ZLIB], [zlib])
 
+# For tests
+AC_PATH_PROG([GUILE_RUN64], [guile-run64])
+
 # To build the website
 AC_PATH_PROG([EMACS], [emacs])
 
@@ -45,5 +48,4 @@ AC_SUBST([SWIG_FLAGS], [$(PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 pkg-config --cflags x
 
 AC_CONFIG_FILES([Makefile])
 AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env])
-AC_CONFIG_FILES([build-aux/test-driver.scm])
 AC_OUTPUT