Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / m4 / getline.m4
blob867692334d750da5d67c4026dc18d756f91753fe
1 # getline.m4 serial 9
3 dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software
4 dnl Foundation, Inc.
5 dnl This file is free software; the Free Software Foundation
6 dnl gives unlimited permission to copy and/or distribute it,
7 dnl with or without modifications, as long as this notice is preserved.
9 AC_PREREQ(2.52)
11 dnl See if there's a working, system-supplied version of the getline function.
12 dnl We can't just do AC_REPLACE_FUNCS(getline) because some systems
13 dnl have a function by that name in -linet that doesn't have anything
14 dnl to do with the function we need.
15 AC_DEFUN([AM_FUNC_GETLINE],
17   dnl Persuade glibc <stdio.h> to declare getline() and getdelim().
18   AC_REQUIRE([AC_GNU_SOURCE])
20   am_getline_needs_run_time_check=no
21   AC_CHECK_FUNC(getline,
22                 dnl Found it in some library.  Verify that it works.
23                 am_getline_needs_run_time_check=yes,
24                 am_cv_func_working_getline=no)
25   if test $am_getline_needs_run_time_check = yes; then
26     AC_CACHE_CHECK([for working getline function], am_cv_func_working_getline,
27     [echo fooN |tr -d '\012'|tr N '\012' > conftest.data
28     AC_TRY_RUN([
29 #    include <stdio.h>
30 #    include <stdlib.h>
31 #    include <string.h>
32     int main ()
33     { /* Based on a test program from Karl Heuer.  */
34       char *line = NULL;
35       size_t siz = 0;
36       int len;
37       FILE *in = fopen ("./conftest.data", "r");
38       if (!in)
39         return 1;
40       len = getline (&line, &siz, in);
41       exit ((len == 4 && line && strcmp (line, "foo\n") == 0) ? 0 : 1);
42     }
43     ], am_cv_func_working_getline=yes dnl The library version works.
44     , am_cv_func_working_getline=no dnl The library version does NOT work.
45     , am_cv_func_working_getline=no dnl We're cross compiling.
46     )])
47   fi
49   if test $am_cv_func_working_getline = no; then
50     dnl We must choose a different name for our function, since on ELF systems
51     dnl a broken getline() in libc.so would override our getline() in
52     dnl libgettextlib.so.
53     AC_DEFINE([getline], [gnu_getline],
54       [Define to a replacement function name for getline().])
55     AC_LIBOBJ(getline)
56     AC_LIBOBJ(getndelim2)
57     gl_PREREQ_GETLINE
58     gl_PREREQ_GETNDELIM2
59   fi
62 # Prerequisites of lib/getline.c.
63 AC_DEFUN([gl_PREREQ_GETLINE],
65   AC_CHECK_FUNCS(getdelim)