(gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
[gnulib.git] / m4 / getline.m4
1 # getline.m4 serial 8
2
3 dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software
4 dnl Foundation, Inc.
5
6 dnl This file is free software, distributed under the terms of the GNU
7 dnl General Public License.  As a special exception to the GNU General
8 dnl Public License, this file may be distributed as part of a program
9 dnl that contains a configuration script generated by Autoconf, under
10 dnl the same distribution terms as the rest of that program.
11
12 AC_PREREQ(2.52)
13
14 dnl See if there's a working, system-supplied version of the getline function.
15 dnl We can't just do AC_REPLACE_FUNCS(getline) because some systems
16 dnl have a function by that name in -linet that doesn't have anything
17 dnl to do with the function we need.
18 AC_DEFUN([AM_FUNC_GETLINE],
19 [
20   dnl Persuade glibc <stdio.h> to declare getline() and getdelim().
21   AC_REQUIRE([AC_GNU_SOURCE])
22
23   am_getline_needs_run_time_check=no
24   AC_CHECK_FUNC(getline,
25                 dnl Found it in some library.  Verify that it works.
26                 am_getline_needs_run_time_check=yes,
27                 am_cv_func_working_getline=no)
28   if test $am_getline_needs_run_time_check = yes; then
29     AC_CACHE_CHECK([for working getline function], am_cv_func_working_getline,
30     [echo fooN |tr -d '\012'|tr N '\012' > conftest.data
31     AC_TRY_RUN([
32 #    include <stdio.h>
33 #    include <stdlib.h>
34 #    include <string.h>
35     int main ()
36     { /* Based on a test program from Karl Heuer.  */
37       char *line = NULL;
38       size_t siz = 0;
39       int len;
40       FILE *in = fopen ("./conftest.data", "r");
41       if (!in)
42         return 1;
43       len = getline (&line, &siz, in);
44       exit ((len == 4 && line && strcmp (line, "foo\n") == 0) ? 0 : 1);
45     }
46     ], am_cv_func_working_getline=yes dnl The library version works.
47     , am_cv_func_working_getline=no dnl The library version does NOT work.
48     , am_cv_func_working_getline=no dnl We're cross compiling.
49     )])
50   fi
51
52   if test $am_cv_func_working_getline = no; then
53     dnl We must choose a different name for our function, since on ELF systems
54     dnl a broken getline() in libc.so would override our getline() in
55     dnl libgettextlib.so.
56     AC_DEFINE([getline], [gnu_getline],
57       [Define to a replacement function name for getline().])
58     AC_LIBOBJ(getline)
59     gl_PREREQ_GETLINE
60   fi
61 ])
62
63 # Prerequisites of lib/getline.c.
64 AC_DEFUN([gl_PREREQ_GETLINE],
65 [
66   AC_REQUIRE([AC_HEADER_STDC])
67   AC_CHECK_FUNCS(getdelim)
68 ])