This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU gss".
http://git.savannah.gnu.org/cgit/gss.git/commit/?id=20affa83054f98f1ff3d2475e671fab9dffa9c02 The branch, master has been updated via 20affa83054f98f1ff3d2475e671fab9dffa9c02 (commit) from 60779ee8893a6bfd9a4e8e5cdd4d023fa8722de4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 20affa83054f98f1ff3d2475e671fab9dffa9c02 Author: Simon Josefsson <[email protected]> Date: Mon Nov 21 15:26:35 2011 +0100 Don't warn about missing pure/const attributes. ----------------------------------------------------------------------- Summary of changes: configure.ac | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/configure.ac b/configure.ac index 45e025b..3aa17e1 100644 --- a/configure.ac +++ b/configure.ac @@ -21,6 +21,11 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) AC_INIT([GNU Generic Security Service], [1.0.2], [[email protected]], [gss]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_HEADERS(config.h) +AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override]) +AM_SILENT_RULES([yes]) # Library code modified: REVISION++ # Interfaces changed/added/removed: CURRENT++ REVISION=0 @@ -30,16 +35,6 @@ AC_SUBST(LT_CURRENT, 3) AC_SUBST(LT_REVISION, 2) AC_SUBST(LT_AGE, 0) -# Used when creating libgss-XX.def. -DLL_VERSION=`expr ${LT_CURRENT} - ${LT_AGE}` -AC_SUBST(DLL_VERSION) - -AC_CONFIG_AUX_DIR([build-aux]) -AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override]) -AM_SILENT_RULES([yes]) -AC_CONFIG_HEADERS(config.h) - # Checks for programs. AC_PROG_CC gl_EARLY @@ -50,6 +45,10 @@ AC_PROG_LIBTOOL AM_MISSING_PROG(PERL, perl, $missing_dir) AM_MISSING_PROG(HELP2MAN, help2man, $missing_dir) +# Used when creating libgss-XX.def. +DLL_VERSION=`expr ${LT_CURRENT} - ${LT_AGE}` +AC_SUBST(DLL_VERSION) + # Internationalization. AM_GNU_GETTEXT(external) AM_GNU_GETTEXT_VERSION(0.17) @@ -120,6 +119,8 @@ if test "$gl_gcc_warnings" = yes; then nw="$nw -Wunreachable-code" # False positive on strcmp nw="$nw -Wpadded" # Standard GSS-API headers are unpadded nw="$nw -Wtraditional-conversion" # Too many warnings for now + nw="$nw -Wsuggest-attribute=pure" # Is it worth using attributes? + nw="$nw -Wsuggest-attribute=const" # Is it worth using attributes? gl_MANYWARN_ALL_GCC([ws]) gl_MANYWARN_COMPLEMENT(ws, [$ws], [$nw]) hooks/post-receive -- GNU gss _______________________________________________ Gss-commit mailing list [email protected] https://lists.gnu.org/mailman/listinfo/gss-commit
