Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files.
[gnulib.git] / m4 / getpass.m4
1 # getpass.m4 serial 6
2 dnl Copyright (C) 2002-2003, 2005 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 # Provide a getpass() function if the system doesn't have it.
8 AC_DEFUN([gl_FUNC_GETPASS],
9 [
10   AC_REPLACE_FUNCS(getpass)
11   AC_CHECK_DECLS_ONCE(getpass)
12   if test $ac_cv_func_getpass = no; then
13     gl_PREREQ_GETPASS
14   fi
15 ])
16
17 # Provide the GNU getpass() implementation. It supports passwords of
18 # arbitrary length (not just 8 bytes as on HP-UX).
19 AC_DEFUN([gl_FUNC_GETPASS_GNU],
20 [
21   AC_LIBSOURCES([getpass.c, getpass.h])
22
23   AC_CHECK_DECLS_ONCE(getpass)
24   dnl TODO: Detect when GNU getpass() is already found in glibc.
25   AC_LIBOBJ(getpass)
26   gl_PREREQ_GETPASS
27   dnl We must choose a different name for our function, since on ELF systems
28   dnl an unusable getpass() in libc.so would override our getpass() if it is
29   dnl compiled into a shared library.
30   AC_DEFINE([getpass], [gnu_getpass],
31     [Define to a replacement function name for getpass().])
32 ])
33
34 # Prerequisites of lib/getpass.c.
35 AC_DEFUN([gl_PREREQ_GETPASS], [
36   AC_CHECK_HEADERS_ONCE(stdio_ext.h)
37   AC_CHECK_DECLS_ONCE([fflush_unlocked flockfile fputs_unlocked funlockfile putc_unlocked])
38   :
39 ])