3 dnl Copyright (C) 2005-2007, 2009-2011 Free Software 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.
11 AC_DEFUN([gl_FUNC_GETDELIM],
13 AC_REQUIRE([gl_STDIO_H_DEFAULTS])
15 dnl Persuade glibc <stdio.h> to declare getdelim().
16 AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
18 AC_CHECK_DECLS_ONCE([getdelim])
20 AC_CHECK_FUNCS_ONCE([getdelim])
21 if test $ac_cv_func_getdelim = yes; then
22 dnl Found it in some library. Verify that it works.
23 AC_CACHE_CHECK([for working getdelim function], [gl_cv_func_working_getdelim],
24 [echo fooNbarN | tr -d '\012' | tr N '\012' > conftest.data
25 AC_RUN_IFELSE([AC_LANG_SOURCE([[
31 FILE *in = fopen ("./conftest.data", "r");
35 /* Test result for a NULL buffer and a zero size.
36 Based on a test program from Karl Heuer. */
39 int len = getdelim (&line, &siz, '\n', in);
40 if (!(len == 4 && line && strcmp (line, "foo\n") == 0))
44 /* Test result for a NULL buffer and a non-zero size.
45 This crashes on FreeBSD 8.0. */
47 size_t siz = (size_t)(~0) / 4;
48 if (getdelim (&line, &siz, '\n', in) == -1)
53 ]])], [gl_cv_func_working_getdelim=yes] dnl The library version works.
54 , [gl_cv_func_working_getdelim=no] dnl The library version does NOT work.
55 , dnl We're cross compiling. Assume it works on glibc2 systems.
56 [AC_EGREP_CPP([Lucky GNU user],
59 #ifdef __GNU_LIBRARY__
60 #if (__GLIBC__ >= 2) && !defined __UCLIBC__
65 [gl_cv_func_working_getdelim=yes],
66 [gl_cv_func_working_getdelim=no])]
69 gl_cv_func_working_getdelim=no
72 if test $ac_cv_have_decl_getdelim = no; then
76 if test $gl_cv_func_working_getdelim = no; then
77 if test $ac_cv_func_getdelim = yes; then
85 # Prerequisites of lib/getdelim.c.
86 AC_DEFUN([gl_PREREQ_GETDELIM],
88 AC_CHECK_FUNCS([flockfile funlockfile])
89 AC_CHECK_DECLS([getc_unlocked])