8dd07b1322d6e6a198dd241521f802b77213d93c
[gnulib.git] / m4 / ptsname_r.m4
1 # ptsname_r.m4 serial 2
2 dnl Copyright (C) 2010-2012 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_PTSNAME_R],
8 [
9   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
10
11   dnl Persuade glibc <stdlib.h> to declare ptsname_r().
12   AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
13
14   AC_CHECK_FUNCS_ONCE([ptsname_r])
15   if test $ac_cv_func_ptsname_r = no; then
16     HAVE_PTSNAME_R=0
17   else
18     dnl On OSF/1 5.1, the type of the third argument is 'int', not 'size_t',
19     dnl and the declaration is missing if _REENTRANT is not defined.
20     AC_CACHE_CHECK([whether ptsname_r has the same signature as in glibc],
21       [gl_cv_func_ptsname_r_signature_ok],
22       [AC_COMPILE_IFELSE(
23          [AC_LANG_PROGRAM(
24             [[#include <stddef.h>
25               #include <stdlib.h>
26               /* Test whether ptsname_r is declared at all.  */
27               int (*f) (int, char *, size_t) = ptsname_r;
28               /* Test whether it has the same declaration as in glibc.  */
29               #undef ptsname_r
30               extern
31               #ifdef __cplusplus
32               "C"
33               #endif
34               int ptsname_r (int, char *, size_t);
35             ]],
36             [[return f (0, NULL, 0);]])
37          ],
38          [gl_cv_func_ptsname_r_signature_ok=yes],
39          [gl_cv_func_ptsname_r_signature_ok=no])
40       ])
41     if test $gl_cv_func_ptsname_r_signature_ok = no; then
42       REPLACE_PTSNAME_R=1
43     fi
44   fi
45 ])
46
47 # Prerequisites of lib/ptsname.c.
48 AC_DEFUN([gl_PREREQ_PTSNAME_R], [
49   :
50 ])