Blame SOURCES/elinks-0.12pre6-autoconf.patch

ab432b
From d7380abead73dc753023ef598b87944756c08d40 Mon Sep 17 00:00:00 2001
ab432b
From: Kamil Dudka <kdudka@redhat.com>
ab432b
Date: Mon, 25 Feb 2013 15:31:07 +0100
ab432b
Subject: [PATCH] configure.in: add missing AC_LANG_PROGRAM
ab432b
ab432b
... around the first argument of AC_COMPILE_IFELSE
ab432b
---
ab432b
 configure.in |    4 ++--
ab432b
 1 files changed, 2 insertions(+), 2 deletions(-)
ab432b
ab432b
diff --git a/configure.in b/configure.in
ab432b
index 2629ac3..4290e45 100644
ab432b
--- a/configure.in
ab432b
+++ b/configure.in
ab432b
@@ -220,7 +220,7 @@ AC_STRUCT_TM
ab432b
 AC_C_CONST
ab432b
 AC_C_INLINE
ab432b
 AC_MSG_CHECKING([[for C99-conforming inline]])
ab432b
-AC_COMPILE_IFELSE([[
ab432b
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
ab432b
 	int add(int change);
ab432b
 
ab432b
 	static int sum;
ab432b
@@ -236,7 +236,7 @@ AC_COMPILE_IFELSE([[
ab432b
 	sub(int change)
ab432b
 	{
ab432b
 		return add(-change);
ab432b
-	}]],
ab432b
+	}]])],
ab432b
 	[AC_MSG_RESULT([[yes]])
ab432b
 	 AC_DEFINE([NONSTATIC_INLINE], [inline],
ab432b
 		[Define as inline if the compiler lets you declare a function without inline, then define it with inline, and have that definition refer to identifiers with internal linkage.  This is allowed by C99 6.7.4p6 and 6.7.4p3 together.  Otherwise define as nothing.])],
ab432b
-- 
ab432b
1.7.1
ab432b