summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-01-29 12:18:51 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-01-29 12:18:51 +0200
commitf48402ce651694f808c9e9e09285faaca020a3ab (patch)
tree5371427ba1c01983907ee2f65c4c36e262d3811f /configure.ac
parent38c18f11f2b96c66d02816b2bcc8f77b756ced44 (diff)
build: bump version 1.8.14v1.8.141.8.14
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 9654b98..5e44d5d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-## Copyright (C) 2008-2022 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
+## Copyright (C) 2008-2023 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
@@ -43,10 +43,10 @@ AC_PROG_EGREP
extra_flags="-Wformat-security \
- -Wstack-protector \
- -Wstack-protector-all \
- -Wno-cast-function-type \
- -Wno-bad-function-cast \
+ -Wstack-protector \
+ -Wstack-protector-all \
+ -Wno-cast-function-type \
+ -Wno-bad-function-cast \
-Wno-switch-enum"
AX_CXX_COMPILE_STDCXX_17
@@ -69,7 +69,7 @@ AC_SYS_LARGEFILE
# asan is somewhat similar to valgrind, but has low enough overhead so it
# can be used during normal operation.
AC_ARG_ENABLE([asan],[AS_HELP_STRING([--enable-asan],
- [Enable Address Sanitizer])], [use_asan=$enableval], [use_asan=no])
+ [Enable Address Sanitizer])], [use_asan=$enableval], [use_asan=no])
AS_IF([test "x$use_asan" = "xyes"],[
AC_SUBST(ASAN_CFLAGS, "-fsanitize=address -static-libasan -fno-omit-frame-pointer")
AC_SUBST(ASAN_CXXFLAGS,"-fsanitize=address -static-libasan -fno-omit-frame-pointer")
@@ -219,7 +219,7 @@ AS_IF([test "x$enable_guile" != "xno"],[
])
AM_CONDITIONAL(BUILD_GUILE,[test "x$have_guile" = "xyes" -a \
- "x$ac_cv_prog_GUILE_SNARF" != "xno"])
+ "x$ac_cv_prog_GUILE_SNARF" != "xno"])
AM_COND_IF([BUILD_GUILE],[AC_DEFINE(BUILD_GUILE,[1], [Do we support Guile?])])
###############################################################################