Mercurial > hg > octave-shane > gnulib-hg
annotate modules/freadahead @ 17632:86af85d364e1 default tip
unistd: port readlink to Mac OS X 10.3.9
* lib/unistd.in.h (_GL_INCLUDING_UNISTD_H): New macro, to work
around self-include problem in Mac OS X 10.3.9 when combined with
readlink module. Problem reported by Klaus Zietler in
<http://bugs.gnu.org/16825>.
author | Paul Eggert <eggert@penguin.cs.ucla.edu> |
---|---|
date | Tue, 25 Feb 2014 11:16:27 -0800 |
parents | 3d02d25fa13d |
children |
rev | line source |
---|---|
9158 | 1 Description: |
2 freadahead() function: Determine the number of bytes waiting in the input | |
3 buffer of a stream. | |
4 | |
5 Files: | |
6 lib/freadahead.h | |
7 lib/freadahead.c | |
9980
2c1ba629f5d5
New private include file lib/stdio-impl.h.
Bruno Haible <bruno@clisp.org>
parents:
9158
diff
changeset
|
8 lib/stdio-impl.h |
16916
3d02d25fa13d
stdioext: Add support for musl libc.
Bruno Haible <bruno@clisp.org>
parents:
10705
diff
changeset
|
9 m4/freadahead.m4 |
9158 | 10 |
11 Depends-on: | |
12 | |
13 configure.ac: | |
16916
3d02d25fa13d
stdioext: Add support for musl libc.
Bruno Haible <bruno@clisp.org>
parents:
10705
diff
changeset
|
14 gl_FUNC_FREADAHEAD |
3d02d25fa13d
stdioext: Add support for musl libc.
Bruno Haible <bruno@clisp.org>
parents:
10705
diff
changeset
|
15 if test $ac_cv_func___freadahead = no; then |
3d02d25fa13d
stdioext: Add support for musl libc.
Bruno Haible <bruno@clisp.org>
parents:
10705
diff
changeset
|
16 AC_LIBOBJ([freadahead]) |
3d02d25fa13d
stdioext: Add support for musl libc.
Bruno Haible <bruno@clisp.org>
parents:
10705
diff
changeset
|
17 fi |
9158 | 18 |
19 Makefile.am: | |
20 | |
21 Include: | |
22 "freadahead.h" | |
23 | |
24 License: | |
10705
dbd1701cbcb4
Relicense the 'freadahead' module under LGPLv2+.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
25 LGPLv2+ |
9158 | 26 |
27 Maintainer: | |
28 Bruno Haible | |
29 |