Mercurial > hg > octave-shane > gnulib-hg
annotate modules/fwritable @ 14952:36cb7e4a23d5
fwritable: Move AC_LIBOBJ invocations to module description.
* m4/fwritable.m4 (gl_FUNC_FWRITABLE): Move AC_LIBOBJ invocation from
here...
* modules/fwritable (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 07 May 2011 13:47:27 +0200 |
parents | 2c1ba629f5d5 |
children |
rev | line source |
---|---|
8689 | 1 Description: |
2 fwritable() function: Determine whether a FILE stream supports writing. | |
3 | |
4 Files: | |
5 lib/fwritable.h | |
6 lib/fwritable.c | |
9980
2c1ba629f5d5
New private include file lib/stdio-impl.h.
Bruno Haible <bruno@clisp.org>
parents:
8689
diff
changeset
|
7 lib/stdio-impl.h |
8689 | 8 m4/fwritable.m4 |
9 | |
10 Depends-on: | |
11 stdbool | |
12 | |
13 configure.ac: | |
14 gl_FUNC_FWRITABLE | |
14952
36cb7e4a23d5
fwritable: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
15 if test $ac_cv_func___fwritable = no; then |
36cb7e4a23d5
fwritable: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
16 AC_LIBOBJ([fwritable]) |
36cb7e4a23d5
fwritable: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
9980
diff
changeset
|
17 fi |
8689 | 18 |
19 Makefile.am: | |
20 | |
21 Include: | |
22 "fwritable.h" | |
23 | |
24 License: | |
25 LGPL | |
26 | |
27 Maintainer: | |
28 Bruno Haible, Eric Blake | |
29 |