X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=configure.ac;h=081cb4cd3cd3f20a1877c854c5aa23f2245f075e;hb=3443bbd0d55cf83c1f89c7fd73965b89f9fb4d35;hp=f0384a5ec476fbd91ab96114b56c37c5cc9cf57a;hpb=14cc033ade0b700352ad8885927d9e22d619b026;p=libguestfs.git diff --git a/configure.ac b/configure.ac index f0384a5..081cb4c 100644 --- a/configure.ac +++ b/configure.ac @@ -18,11 +18,11 @@ # major/minor/release must be numbers m4_define([libguestfs_major], [1]) m4_define([libguestfs_minor], [2]) -m4_define([libguestfs_release], [10]) +m4_define([libguestfs_release], [13]) # extra can be any string m4_define([libguestfs_extra], []) -AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release[]libguestfs_extra) +AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign]) @@ -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])