aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2023-11-19 21:47:34 +0200
committerGitHub <noreply@github.com>2023-11-19 21:47:34 +0200
commitdb61be1897ffe8f4d1a72bed62c8c892d06a1983 (patch)
tree55372b2fd05926de9c0c6c35acb0554b144ae107 /configure.ac
parent1fdf240aec17b6525ee2ebc76152ea8109f83595 (diff)
parent1136f5bd18ce5b1657347dc26b0aa8e3153786ce (diff)
downloadbindfs-db61be1897ffe8f4d1a72bed62c8c892d06a1983.tar.gz
Merge pull request #148 from hartwork/fix-warnings
Fix compile warnings (including a serious one) + cover FUSE 2 in CI + add `-Wextra` to `configure.ac`
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 00f8ebc..0598619 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,7 +35,7 @@ AM_CONDITIONAL([BUILD_OS_IS_DARWIN], [case $build_os in darwin* ) true ;; * ) fa
# _DARWIN_BETTER_REALPATH fixes MacOS realpath() broken around Catalina (#83).
my_CPPFLAGS="-D_REENTRANT -D_FILE_OFFSET_BITS=64 -D_XOPEN_SOURCE=700 -D__BSD_VISIBLE=1 -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_DARWIN_BETTER_REALPATH"
-my_CFLAGS="-std=c99 -Wall -Wpedantic -fno-common"
+my_CFLAGS="-std=c99 -Wall -Wextra -Wpedantic -fno-common"
my_LDFLAGS="-pthread"
AC_SUBST([my_CPPFLAGS])
AC_SUBST([my_CFLAGS])