diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2005-02-25 23:33:03 +0000 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2005-02-25 23:33:03 +0000 |
commit | 94dfb814b6bcd17f05e3bb1ff61de9b9e526c3b7 (patch) | |
tree | 138de63ada16264655f76bd2662895401185bb8a /config.hh.in | |
parent | 26253bd2625f96bdaed6689668d7c5ff1a98f132 (diff) |
* ttftool/util.c:
* ttftool/ttfps.c:
* ttftool/ps.c: #include libc-extension.hh
* flower/include/libc-extension.hh:
* flower/libc-extension.cc (fopencookie)[!HAVE_FOPENCOOKIE]: Add
wrapper using funopen.
(fopencookie, handle_cookie_io_fclose, handle_cookie_io_fprintf,
handle_cookie_io_fprintf): Add wrappers catching Memory_out_stream.
* config.hh.in:
* configure.in (AC_CHECK_FUNCS): Add fopencookie, funopen.
(AC_CHECK_HEADERS): Add libio.h
Diffstat (limited to 'config.hh.in')
-rw-r--r-- | config.hh.in | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/config.hh.in b/config.hh.in index cb6a64eafe..e04b6d163e 100644 --- a/config.hh.in +++ b/config.hh.in @@ -18,6 +18,15 @@ /* default lilypond locale dir */ #define LOCALEDIR "@LOCALEDIR@" +/* define if you have fopencookie */ +#define HAVE_FOPENCOOKIE 0 + +/* define if you have funopen */ +#define HAVE_FUNOPEN 0 + +/* define if you have gettext */ +#define HAVE_GETTEXT 0 + /* define if you have memmem */ #define HAVE_MEMMEM 0 @@ -30,9 +39,6 @@ /* define if you have yyFlexLexer.yy_current_buffer */ #undef HAVE_FLEXLEXER_YY_CURRENT_BUFFER -/* define if you have gettext */ -#define HAVE_GETTEXT 0 - /* define if you have isinf */ #define HAVE_ISINF 0 @@ -61,9 +67,12 @@ #define DIRSEP '@DIRSEP@' #define PATHSEP '@PATHSEP@' -/* define if you have assert */ +/* define if you have assert.h */ #define HAVE_ASSERT_H 0 +/* define if you have libio.h */ +#define HAVE_LIBIO_H 0 + /* define if you have sys/stat.h */ #define HAVE_SYS_STAT_H 0 |