Mercurial > hg > octave-shane > gnulib-hg
annotate modules/ftello @ 13294:4263e09100fb
ftell, ftello: Work around Solaris bug.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 01 May 2010 20:32:26 +0200 |
parents | 4405a3880f94 |
children | e3a337bd785d |
rev | line source |
---|---|
8710 | 1 Description: |
2 ftello() function: Retrieve the position of a FILE stream. | |
3 | |
4 Files: | |
8868
90e71310a07f
Fix fseeko/ftello on cygwin 1.5.24.
Eric Blake <ebb9@byu.net>
parents:
8718
diff
changeset
|
5 lib/ftello.c |
13294
4263e09100fb
ftell, ftello: Work around Solaris bug.
Bruno Haible <bruno@clisp.org>
parents:
9771
diff
changeset
|
6 lib/stdio-impl.h |
8710 | 7 m4/ftello.m4 |
8 | |
9 Depends-on: | |
9771 | 10 extensions |
8872 | 11 lseek |
8710 | 12 stdio |
13 | |
8718
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8710
diff
changeset
|
14 configure.ac-early: |
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8710
diff
changeset
|
15 AC_REQUIRE([AC_FUNC_FSEEKO]) |
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8710
diff
changeset
|
16 |
8710 | 17 configure.ac: |
18 gl_FUNC_FTELLO | |
19 gl_STDIO_MODULE_INDICATOR([ftello]) | |
20 | |
21 Makefile.am: | |
22 | |
23 Include: | |
24 <stdio.h> | |
25 | |
26 License: | |
27 LGPL | |
28 | |
29 Maintainer: | |
30 Bruno Haible | |
31 |