X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=inline;f=configure.ac;h=956a632938d47e2d342f0093ea8e83c9fce35913;hb=9b705c104f2cde7106fdbe27d14bcf4be64df0ad;hp=c02e6d8dc371e301fbb80f32cf6ae410d470421e;hpb=c8a3191eb0b9d0e6bcae0fde29706e97d098a0ed;p=libguestfs.git diff --git a/configure.ac b/configure.ac index c02e6d8..956a632 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ # major/minor/release must be numbers m4_define([libguestfs_major], [1]) m4_define([libguestfs_minor], [4]) -m4_define([libguestfs_release], [0]) +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])