aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-12-08 14:08:23 +0100
committerChristian Grothoff <christian@grothoff.org>2021-12-08 14:11:31 +0100
commitdbe1d76d9c75a95a7ebe3042dfac7e6a7392bfb0 (patch)
tree4cc9badb854a337487f164b4c119aaff0be9365b /configure.ac
parent43938f8d41e3f1680afcfb30d1f2cbf95a0e0483 (diff)
downloadlibmicrohttpd-dbe1d76d9c75a95a7ebe3042dfac7e6a7392bfb0.tar.gz
libmicrohttpd-dbe1d76d9c75a95a7ebe3042dfac7e6a7392bfb0.zip
-fix tests for libmagic (and uncrustify indentation)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 84e513e6..a46bc53f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1996,7 +1996,7 @@ AC_LINK_IFELSE(
1996 ) 1996 )
1997 ], 1997 ],
1998 [ 1998 [
1999 AC_DEFINE([HAVE_LIBMAGIC], [1], [Define to 1 if you have suitable libmagic.]) 1999 AC_DEFINE([MHD_HAVE_LIBMAGIC], [1], [Define to 1 if you have suitable libmagic.])
2000 mhd_have_libmagic="yes" 2000 mhd_have_libmagic="yes"
2001 AC_MSG_RESULT([[yes]]) 2001 AC_MSG_RESULT([[yes]])
2002 ], 2002 ],
@@ -2004,7 +2004,7 @@ AC_LINK_IFELSE(
2004 ] 2004 ]
2005) 2005)
2006LIBS="$SAVE_LIBS" 2006LIBS="$SAVE_LIBS"
2007AM_CONDITIONAL([HAVE_LIBMAGIC], [[test "x$mhd_have_libmagic" = "xyes"]]) 2007AM_CONDITIONAL([MHD_HAVE_LIBMAGIC], [[test "x$mhd_have_libmagic" = "xyes"]])
2008 2008
2009# large file support (> 4 GB) 2009# large file support (> 4 GB)
2010AC_SYS_LARGEFILE 2010AC_SYS_LARGEFILE
@@ -2800,7 +2800,7 @@ AM_CONDITIONAL([USE_COVERAGE], [test "x$use_gcov" = "xyes"])
2800AX_COUNT_CPUS 2800AX_COUNT_CPUS
2801AC_MSG_CHECKING([for number of CPU cores to use in tests]) 2801AC_MSG_CHECKING([for number of CPU cores to use in tests])
2802AS_VAR_IF([enable_heavy_tests], ["yes"], 2802AS_VAR_IF([enable_heavy_tests], ["yes"],
2803 [ 2803 [
2804 # Enable usage of many core if heavy tests are enabled 2804 # Enable usage of many core if heavy tests are enabled
2805 AS_IF([[test "$CPU_COUNT" -gt "32"]], [[CPU_COUNT="32"]])dnl Limit resource usage 2805 AS_IF([[test "$CPU_COUNT" -gt "32"]], [[CPU_COUNT="32"]])dnl Limit resource usage
2806 ], 2806 ],