From d602f4fb516292c297072bd924289eea37b45fa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 15 Mar 2023 20:36:27 +0100 Subject: New upstream version 3.1.9 --- configure.ac | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 01525c8..821d56b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(ipmiutil,3.1.8) +AC_INIT(ipmiutil,3.1.9) AC_CONFIG_SRCDIR(util/ipmiutil.c) echo "ipmiutil version ${PACKAGE_VERSION}" AC_CONFIG_HEADERS(config.h) @@ -333,7 +333,7 @@ else echo $ECHO_N "checking compile sign warning flags ... $ECHO_C" cfwarn="-Wno-pointer-sign -Wno-sign-conversion" # want "-Wno-unused-result", but unrecognized - echo "int main() { return(1); }" >$tmpc + echo "int main(void) { return(1); }" >$tmpc $CC -o $tmpo -c $cfwarn $tmpc >/dev/null 2>&1 if test $? -ne 0 ; then cfwarn= @@ -344,7 +344,7 @@ else rm -f $tmpc $tmpo >/dev/null 2>&1 echo $ECHO_N "checking compile gnu warning flags ... $ECHO_C" cfgnu="-Wgnu-designator" - echo "int main() { return(1); }" >$tmpc + echo "int main(void) { return(1); }" >$tmpc $CC -o $tmpo -c $cfgnu $tmpc >/dev/null 2>&1 if test $? -ne 0 ; then cfgnu= @@ -355,7 +355,7 @@ else rm -f $tmpc $tmpo >/dev/null 2>&1 echo $ECHO_N "checking strict aliasing warning flags ... $ECHO_C" cfalias="-fno-strict-aliasing" - echo "int main() { return(1); }" >$tmpc + echo "int main(void) { return(1); }" >$tmpc $CC -o $tmpo -c $cfalias $tmpc >/dev/null 2>&1 if test $? -ne 0 ; then cfalias= @@ -366,7 +366,8 @@ else rm -f $tmpc $tmpo >/dev/null 2>&1 echo $ECHO_N "checking compile fortify flags ... $ECHO_C" cfhard="-fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2" - echo "int main() { alloca(100); return(1); }" >$tmpc + echo "#include + int main(void) { alloca(100); return(1); }" >$tmpc $CC -o $tmpo $cfhard $tmpc >/dev/null 2>&1 if test $? -ne 0 ; then cfhard= -- cgit v1.2.3