]> git.proxmox.com Git - mirror_frr.git/commitdiff
* configure.ac: Fix AC_LANG_SOURCE usage. It needs double square
authorhasso <hasso>
Sun, 3 Apr 2005 23:46:37 +0000 (23:46 +0000)
committerhasso <hasso>
Sun, 3 Apr 2005 23:46:37 +0000 (23:46 +0000)
  brackets around source. Single ones broke square brackets in the
  code (arrays).

ChangeLog
configure.ac

index f656af92b3570df4d77d2f1c0339550e0e11e647..fd424da7ee4fc9c8efbf2662ba8a85f77c8cbdc3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-04 Hasso Tepper <hasso at quagga.net>
+
+       * configure.ac: Fix AC_LANG_SOURCE usage. It needs double square
+         brackets around source. Single ones broke square brackets in the
+         code (arrays).
+
 2005-04-03 Hasso Tepper <hasso at quagga.net>
 
        * configure.ac: Use AC_RUN_IFELSE instead of obsolete AC_TRY_RUN macro
index 3e7cddf49f2ff1fa1654edcd973ee9f7e1bad1ff..eba7d89d7122d44ee946838aac8a3fd052749c7d 100755 (executable)
@@ -5,7 +5,7 @@
 ##  Copyright (c) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro <kunihiro@zebra.org>
 ##  Portions Copyright (c) 2003 Paul Jakma <paul@dishone.st>
 ##
-## $Id: configure.ac,v 1.97 2005/04/03 13:07:21 hasso Exp $
+## $Id: configure.ac,v 1.98 2005/04/03 23:46:37 hasso Exp $
 AC_PREREQ(2.53)
 
 AC_INIT(Quagga, 0.99.0, [http://bugzilla.quagga.net])
@@ -540,7 +540,7 @@ dnl ------------------------------------
 dnl check for broken CMSG_FIRSTHDR macro
 dnl ------------------------------------
 AC_MSG_CHECKING(for broken CMSG_FIRSTHDR)
-AC_RUN_IFELSE([
+AC_RUN_IFELSE([AC_LANG_SOURCE([[
 #ifdef SUNOS_5
 #define _XPG4_2
 #define __EXTENSIONS__
@@ -560,7 +560,7 @@ main()
   if (CMSG_FIRSTHDR(&msg) != NULL)
     exit(0);
   exit (1);
-}],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
+}]])],[AC_MSG_RESULT(yes - using workaround) AC_DEFINE(HAVE_BROKEN_CMSG_FIRSTHDR,,Broken CMSG_FIRSTHDR)],
 [AC_MSG_RESULT(no)],[AC_MSG_RESULT(no)])
 
 dnl ------------------------------