X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=configure.ac;h=7533ec0bbb016a59aadbe3882d69b6aa4b816512;hp=d660738bd7c2244a2fd495c0f81ea60c5be664e6;hb=10ea14a3f1adb7023dd0601e4759bd24a030a1c3;hpb=8700a55d52f25f60f01ef1b67cff6d5c0071700b diff --git a/configure.ac b/configure.ac index d660738..7533ec0 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], [11]) +m4_define([libguestfs_minor], [5]) +m4_define([libguestfs_release], [0]) # extra can be any string m4_define([libguestfs_extra], []) @@ -37,6 +37,22 @@ AC_DEFINE([PACKAGE_VERSION_MINOR],[libguestfs_minor],[Minor version number]) AC_DEFINE([PACKAGE_VERSION_RELEASE],[libguestfs_release],[Release number]) AC_DEFINE([PACKAGE_VERSION_EXTRA],["libguestfs_extra"],[Extra version string]) +dnl Stable or unstable version? +AC_MSG_CHECKING([if this is a stable or unstable branch of libguestfs]) +AS_IF([test "$((libguestfs_minor % 2))" -eq 0 ],[ + AC_MSG_RESULT([stable]) + ],[ + AC_MSG_RESULT([unstable]) + AC_MSG_NOTICE([ +*** +This is a development version of libguestfs. Some APIs may be unstable +until they appear in a stable release of libguestfs (at which point +the C API and ABI is guaranteed to remain stable forever). For +more information about stable and development branches of libguestfs +please see the section "LIBGUESTFS VERSION NUMBERS" in guestfs(3). +***]) + ]) + dnl Die if the user tries to configure as root, see: dnl https://www.redhat.com/archives/libguestfs/2010-April/msg00098.html AC_MSG_CHECKING([if you are trying to configure as root])