Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/unlockpt @ 17111:b8250ce33952
hash-pjw: relax license to LGPLv2+
* modules/hash-pjw (License): Relax, with consent of author.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Wed, 26 Sep 2012 20:12:57 -0700 |
parents | 69cc1dcd696b |
children |
rev | line source |
---|---|
13030 | 1 Description: |
2 unlockpt() function: Unlock the slave side of a pseudo-terminal from its master | |
3 side. | |
4 | |
5 Files: | |
6 lib/unlockpt.c | |
7 m4/unlockpt.m4 | |
8 | |
9 Depends-on: | |
10 stdlib | |
11 extensions | |
15979
69cc1dcd696b
unlockpt: Detect invalid argument.
Bruno Haible <bruno@clisp.org>
parents:
15969
diff
changeset
|
12 fcntl-h [test $HAVE_UNLOCKPT = 0] |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
13030
diff
changeset
|
13 ptsname [test $HAVE_UNLOCKPT = 0] |
13030 | 14 |
15 configure.ac: | |
16 gl_FUNC_UNLOCKPT | |
15134
c5dcba2a45c0
unlockpt: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 if test $HAVE_UNLOCKPT = 0; then |
c5dcba2a45c0
unlockpt: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
18 AC_LIBOBJ([unlockpt]) |
c5dcba2a45c0
unlockpt: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
19 gl_PREREQ_UNLOCKPT |
c5dcba2a45c0
unlockpt: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
20 fi |
13030 | 21 gl_STDLIB_MODULE_INDICATOR([unlockpt]) |
22 | |
23 Makefile.am: | |
24 | |
25 Include: | |
26 <stdlib.h> | |
27 | |
28 License: | |
15969
d28ebf7351e2
ptsname and others: relax license
Eric Blake <eblake@redhat.com>
parents:
15134
diff
changeset
|
29 LGPLv2+ |
13030 | 30 |
31 Maintainer: | |
32 Bruno Haible |