Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/getpass-gnu @ 17259:bc20efc34eba octave-stable
branch to handle patches for Octave stable
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 03 Jan 2013 14:26:52 -0500 |
parents | b15151b8de0d |
children |
rev | line source |
---|---|
4490 | 1 Description: |
2 getpass() function: read a password of arbitrary length from /dev/tty. | |
3 | |
4 Files: | |
5170
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
5 lib/getpass.h |
4490 | 6 lib/getpass.c |
7 m4/getpass.m4 | |
8 | |
9 Depends-on: | |
10093
a08fa804bfab
Keep getpass-gnu in sync with getpass.
Martin Lambers <marlam@marlam.de>
parents:
7497
diff
changeset
|
10 fseeko |
4490 | 11 getline |
5170
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
12 stdbool |
4490 | 13 |
14 configure.ac: | |
15 gl_FUNC_GETPASS_GNU | |
14972
b15151b8de0d
getpass-gnu: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10093
diff
changeset
|
16 if test $REPLACE_GETPASS = 1; then |
b15151b8de0d
getpass-gnu: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10093
diff
changeset
|
17 AC_LIBOBJ([getpass]) |
b15151b8de0d
getpass-gnu: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10093
diff
changeset
|
18 gl_PREREQ_GETPASS |
b15151b8de0d
getpass-gnu: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10093
diff
changeset
|
19 fi |
4490 | 20 |
21 Makefile.am: | |
22 | |
23 Include: | |
5170
17c4badb3864
Add getpass.h, so it's properly declared.
Paul Eggert <eggert@cs.ucla.edu>
parents:
4490
diff
changeset
|
24 "getpass.h" |
4490 | 25 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5170
diff
changeset
|
26 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5170
diff
changeset
|
27 LGPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5170
diff
changeset
|
28 |
4490 | 29 Maintainer: |
30 Jim Meyering, glibc |