X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=956a632938d47e2d342f0093ea8e83c9fce35913;hb=eec40bf750b09ead53433ca62d02857a3ae7cc9d;hp=39992a82251070b15fed1a740014528a2e1e4bbd;hpb=5fb9cddf1ecc82c0f4fb7701902913ce7effb7a7;p=libguestfs.git diff --git a/configure.ac b/configure.ac index 39992a8..956a632 100644 --- a/configure.ac +++ b/configure.ac @@ -17,8 +17,8 @@ # major/minor/release must be numbers m4_define([libguestfs_major], [1]) -m4_define([libguestfs_minor], [3]) -m4_define([libguestfs_release], [15]) +m4_define([libguestfs_minor], [4]) +m4_define([libguestfs_release], [1]) # extra can be any string m4_define([libguestfs_extra], []) @@ -110,10 +110,11 @@ if test "$gl_gcc_warnings" = yes; then nw="$nw -Wmissing-format-attribute" # daemon.h's asprintf_nowarn nw="$nw -Winline" # daemon.h's asprintf_nowarn nw="$nw -Wshadow" # numerous, plus we're not unanimous - # ?? -Wstrict-overflow nw="$nw -Wunsafe-loop-optimizations" # just a warning that an optimization # was not possible, safe to ignore nw="$nw -Wpacked" # Allow attribute((packed)) on structs + nw="$nw -Wlong-long" # Allow long long since it's required + # by Python, Ruby and xstrtoll. gl_MANYWARN_ALL_GCC([ws]) gl_MANYWARN_COMPLEMENT([ws], [$ws], [$nw])