commit-inetutils
[Top][All Lists]
Advanced

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

[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_2-35-ga21289


From: Mats Erik Andersson
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_9_2-35-ga212896
Date: Sun, 03 Aug 2014 13:29:47 +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 Inetutils ".

The branch, master has been updated
       via  a2128965cb3130e3a68e9469466ae98487fcdbba (commit)
      from  d7139b7ea8ee6a9c9751aaab6d23c328f590a974 (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 -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=a2128965cb3130e3a68e9469466ae98487fcdbba


commit a2128965cb3130e3a68e9469466ae98487fcdbba
Author: Mats Erik Andersson <address@hidden>
Date:   Sun Aug 3 14:16:14 2014 +0200

    Support libshishi with Sun Studio.
    
    Detect libshishi in a manner that allows Sun Studio
    to fully recognize its presence, and build with it.

diff --git a/ChangeLog b/ChangeLog
index b625209..b75ed48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2014-08-03  Mats Erik Andersson  <address@hidden>
+
+       Support libshishi with Sun Studio.
+
+       * configure.ac <shishi>: Call AC_SEARCH_LIBS, not AC_CHECK_LIB,
+       when looking for libshishi.  This allows the C-compiler from
+       Sun Studio 12.1 to correctly detect and build shishi support.
+
 2014-08-02  Mats Erik Andersson  <address@hidden>
 
        More tests for better code coverage.
diff --git a/configure.ac b/configure.ac
index e1e4b08..a878f5d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -384,7 +384,7 @@ if test "$enable_encryption" = yes \
       save_CPPFLAGS=$CPPFLAGS
       CPPFLAGS="$CPPFLAGS $INCAUTH"
       AC_CHECK_HEADER(shishi.h,
-       AC_CHECK_LIB(shishi, shishi_check_version,
+       AC_SEARCH_LIBS([shishi_check_version], [shishi],
          AC_DEFINE([SHISHI]),
          [INCAUTH= LIBAUTH= KERBEROS_VERSION=]),
        [INCAUTH= LIBAUTH= KERBEROS_VERSION=])
diff --git a/ping/ping6.c b/ping/ping6.c
index 383e679..a592b15 100644
--- a/ping/ping6.c
+++ b/ping/ping6.c
@@ -754,7 +754,7 @@ print_ip_data (struct icmp6_hdr *icmp6)
     }
 
   printf ("\n");
-};
+}
 
 static struct icmp_diag
 {

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

Summary of changes:
 ChangeLog    |    8 ++++++++
 configure.ac |    2 +-
 ping/ping6.c |    2 +-
 3 files changed, 10 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 



reply via email to

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