X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=configure.ac;h=ef7527ac21765d352ad4567804ccd60f31fb0968;hp=9034a815de782166bf2d0ba51ec9973bd866bb39;hb=e7ee6eebed6ee3a5b56c0482ba2770e697d8febc;hpb=02b3ed7a4a5d1f51b6264e2e094194354a5e4401 diff --git a/configure.ac b/configure.ac index 9034a81..ef7527a 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], [21]) +m4_define([libguestfs_minor], [5]) +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])