summaryrefslogtreecommitdiff
path: root/modules/getpass-gnu
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-01-03 16:34:39 +0100
committerBruno Haible <bruno@clisp.org>2022-01-03 16:34:39 +0100
commit11d41f8739f2c4ea375e785682935b11f0ab1967 (patch)
treeda9b33797cdcd26f1414561a3731f420a4e35bc7 /modules/getpass-gnu
parenta690f1be8debcbe5d5265915233d533a7f9dcbaf (diff)
downloadgnulib-11d41f8739f2c4ea375e785682935b11f0ab1967.tar.gz
getpass-gnu: Allow use as dependency from test modules.
* m4/getpass.m4 (gl_FUNC_GETPASS_GNU): Set REPLACE_GETPASS_FOR_GETPASS_GNU instead of REPLACE_GETPASS. * m4/unistd_h.m4 (gl_UNISTD_H_REQUIRE_DEFAULTS): Initialize the getpass-gnu module indicator. (gl_UNISTD_H_DEFAULTS): Initialize REPLACE_GETPASS_FOR_GETPASS_GNU. * modules/unistd (Makefile.am): Substitute GNULIB_GETPASS_GNU, REPLACE_GETPASS_FOR_GETPASS_GNU. * modules/getpass-gnu (configure.ac): Test REPLACE_GETPASS_FOR_GETPASS_GNU instead of REPLACE_GETPASS. Set a module indicator. * lib/unistd.in.h (getpass): Test REPLACE_GETPASS, REPLACE_GETPASS_FOR_GETPASS_GNU, and the respective module indicators instead of just REPLACE_GETPASS.
Diffstat (limited to 'modules/getpass-gnu')
-rw-r--r--modules/getpass-gnu4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/getpass-gnu b/modules/getpass-gnu
index 2c9f76e3ff..d968af7e33 100644
--- a/modules/getpass-gnu
+++ b/modules/getpass-gnu
@@ -11,11 +11,11 @@ getpass
configure.ac:
gl_FUNC_GETPASS_GNU
-if test $HAVE_GETPASS = 0 || test $REPLACE_GETPASS = 1; then
+if test $HAVE_GETPASS = 0 || test $REPLACE_GETPASS_FOR_GETPASS_GNU = 1; then
AC_LIBOBJ([getpass])
gl_PREREQ_GETPASS
fi
-gl_UNISTD_MODULE_INDICATOR([getpass])
+gl_UNISTD_MODULE_INDICATOR([getpass-gnu])
Makefile.am: