]> git.cworth.org Git - tar/blob - m4/memrchr.m4
8070d5fece2b3368e221fbdc6deabd668d105dec
[tar] / m4 / memrchr.m4
1 # memrchr.m4 serial 8
2 dnl Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_MEMRCHR],
8 [
9   dnl Persuade glibc <string.h> to declare memrchr().
10   AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
11
12   AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
13   AC_CHECK_DECLS_ONCE([memrchr])
14   if test $ac_cv_have_decl_memrchr = no; then
15     HAVE_DECL_MEMRCHR=0
16   fi
17
18   AC_REPLACE_FUNCS(memrchr)
19   if test $ac_cv_func_memrchr = no; then
20     gl_PREREQ_MEMRCHR
21   fi
22 ])
23
24 # Prerequisites of lib/memrchr.c.
25 AC_DEFUN([gl_PREREQ_MEMRCHR], [:])