gnutls-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU gnutls branch, gnutls_2_12_x, updated. gnutls_2_12_19-1-g77670


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, gnutls_2_12_x, updated. gnutls_2_12_19-1-g7767047
Date: Wed, 09 May 2012 06:16:04 +0000

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 gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=77670476814c078bbad56ce8772b192a3b5736b6

The branch, gnutls_2_12_x has been updated
       via  77670476814c078bbad56ce8772b192a3b5736b6 (commit)
      from  7ffaf771d9b3e46d6ffe0944e69230fe4f16713f (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 77670476814c078bbad56ce8772b192a3b5736b6
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Wed May 9 08:14:48 2012 +0200

    This patch fixes following kind of issue with automake 1.12
    
    | automake: warnings are treated as errors
    | /.../automake-1.12/am/ltlibrary.am: warning: 'libgnutls.la': linking 
libtool libraries using a non-POSIX
    | /.../automake-1.12/am/ltlibrary.am: archiver requires 'AM_PROG_AR' in 
'configure.ac'
    
    Patch by: Nitin A Kamble <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 configure.ac          |    3 +++
 lib/configure.ac      |    3 +++
 libextra/configure.ac |    3 +++
 3 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/configure.ac b/configure.ac
index 6d44bee..94eac4b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,6 +36,9 @@ AC_MSG_RESULT([***
 
 dnl Checks for programs.
 AC_PROG_CC
+# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
+m4_pattern_allow([AM_PROG_AR])
+AM_PROG_AR
 AC_PROG_LN_S
 GTK_DOC_CHECK(1.1)
 AC_PATH_PROG([GAA], [gaa])
diff --git a/lib/configure.ac b/lib/configure.ac
index 25f68d7..dd0325f 100644
--- a/lib/configure.ac
+++ b/lib/configure.ac
@@ -31,6 +31,9 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 AM_CONFIG_HEADER(config.h)
 
 AC_PROG_CC
+# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
+m4_pattern_allow([AM_PROG_AR])
+AM_PROG_AR
 lgl_EARLY
 
 AC_LIBTOOL_WIN32_DLL
diff --git a/libextra/configure.ac b/libextra/configure.ac
index c293507..44a6067 100644
--- a/libextra/configure.ac
+++ b/libextra/configure.ac
@@ -31,6 +31,9 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 AM_CONFIG_HEADER(config.h)
 
 AC_PROG_CC
+# automake 1.12 seems to require this, but automake 1.11 doesn't recognize it
+m4_pattern_allow([AM_PROG_AR])
+AM_PROG_AR
 xgl_EARLY
 
 AC_LIBTOOL_WIN32_DLL


hooks/post-receive
-- 
GNU gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]