From: Adam Dickmeiss Date: Tue, 4 Apr 2006 09:18:53 +0000 (+0000) Subject: Fix AC_TRY_LINK tests so they dont define static function f. Instead X-Git-Tag: ZEBRA.1.3.36~4 X-Git-Url: http://sru.miketaylor.org.uk/cgi-bin?a=commitdiff_plain;h=10c3667277a37e14233366217aa97ad57d7f4ec3;p=idzebra-moved-to-github.git Fix AC_TRY_LINK tests so they dont define static function f. Instead just use code - since autogeneratd code is part of function main. --- diff --git a/configure.in b/configure.in index 4481b34..6d7c606 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Zebra, Index Data Aps, 1995-2005 -dnl $Id: configure.in,v 1.91.2.21 2006-04-04 09:10:49 adam Exp $ +dnl $Id: configure.in,v 1.91.2.22 2006-04-04 09:18:53 adam Exp $ dnl AC_INIT(include/zebraver.h) AM_INIT_AUTOMAKE(idzebra,1.3.35) @@ -105,20 +105,14 @@ if test "$ac_cv_lib_readline_readline" = "yes"; then AC_TRY_LINK([ #include #include - ],[ - static void f() - { - rl_attempted_completion_over = 0; - } + ],[ + rl_attempted_completion_over = 0; ],AC_DEFINE(HAVE_READLINE_COMPLETION_OVER)) AC_TRY_LINK([ #include #include ],[ - static void f() - { rl_completion_matches (0, 0); - } ],AC_DEFINE(HAVE_READLINE_RL_COMPLETION_MATCHES)) LIBS=$xLIBS fi @@ -136,7 +130,7 @@ if test "$with_iconv" != "no"; then AC_TRY_LINK([ #include ],[ - static void f() {iconv_t t = iconv_open("", ""); } + iconv_t t = iconv_open("", ""); ],[ AC_DEFINE(HAVE_ICONV_H) AC_MSG_RESULT(yes) @@ -145,7 +139,7 @@ if test "$with_iconv" != "no"; then AC_TRY_LINK([ #include ],[ - static void f() {iconv_t t = iconv_open("", ""); } + iconv_t t = iconv_open("", ""); ],[ AC_DEFINE(HAVE_ICONV_H) AC_MSG_RESULT(yes)