2 dnl Copyright (C) 2002-2003, 2005-2006, 2009-2012 Free Software Foundation,
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
8 # Provide a getpass() function if the system doesn't have it.
9 AC_DEFUN([gl_FUNC_GETPASS],
11 dnl Persuade Solaris <unistd.h> and <stdlib.h> to declare getpass().
12 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
14 AC_CHECK_FUNCS([getpass])
15 AC_CHECK_DECLS_ONCE([getpass])
16 if test $ac_cv_func_getpass = yes; then
23 # Provide the GNU getpass() implementation. It supports passwords of
24 # arbitrary length (not just 8 bytes as on HP-UX).
25 AC_DEFUN([gl_FUNC_GETPASS_GNU],
27 dnl Persuade Solaris <unistd.h> and <stdlib.h> to declare getpass().
28 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
30 AC_CHECK_DECLS_ONCE([getpass])
31 dnl TODO: Detect when GNU getpass() is already found in glibc.
34 if test $REPLACE_GETPASS = 1; then
35 dnl We must choose a different name for our function, since on ELF systems
36 dnl an unusable getpass() in libc.so would override our getpass() if it is
37 dnl compiled into a shared library.
38 AC_DEFINE([getpass], [gnu_getpass],
39 [Define to a replacement function name for getpass().])
43 # Prerequisites of lib/getpass.c.
44 AC_DEFUN([gl_PREREQ_GETPASS], [
45 AC_CHECK_HEADERS_ONCE([stdio_ext.h termios.h])
46 AC_CHECK_FUNCS_ONCE([__fsetlocking tcgetattr tcsetattr])
47 AC_CHECK_DECLS([__fsetlocking],,,
50 #include <stdio_ext.h>
52 AC_CHECK_DECLS_ONCE([fflush_unlocked])
53 AC_CHECK_DECLS_ONCE([flockfile])
54 AC_CHECK_DECLS_ONCE([fputs_unlocked])
55 AC_CHECK_DECLS_ONCE([funlockfile])
56 AC_CHECK_DECLS_ONCE([putc_unlocked])