diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-11-04 17:04:59 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-11-04 17:04:59 +0000 |
commit | d7627fbf78ee906051ad54247b49c8da12fcc3a4 (patch) | |
tree | 850761843de47bd9f8d21a0125947d2eb283d7f1 /config.h.in | |
parent | 272ea49e696bda73557d3a8337201e08aefe00f1 (diff) | |
download | libxslt-d7627fbf78ee906051ad54247b49c8da12fcc3a4.tar.gz libxslt-d7627fbf78ee906051ad54247b49c8da12fcc3a4.tar.bz2 libxslt-d7627fbf78ee906051ad54247b49c8da12fcc3a4.zip |
remove the use of snprintf, and use libxml2 string API instead. try to
* xsltproc/xsltproc.c: remove the use of snprintf, and use
libxml2 string API instead.
* configure.in libxslt/xsltconfig.h.in libxslt/xsltutils.c:
try to cope with architecture lacking some of the string functions,
reuse the trio ones compiled in libxml2 , should close #97113
Daniel
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index bd8456bf..d7f6ba85 100644 --- a/config.h.in +++ b/config.h.in @@ -18,6 +18,9 @@ /* Define to 1 if you have the <float.h> header file. */ #undef HAVE_FLOAT_H +/* Define to 1 if you have the `fprintf' function. */ +#undef HAVE_FPRINTF + /* Define to 1 if you have the <fp_class.h> header file. */ #undef HAVE_FP_CLASS_H @@ -51,6 +54,18 @@ /* Define to 1 if you have the <nan.h> header file. */ #undef HAVE_NAN_H +/* Define to 1 if you have the `printf' function. */ +#undef HAVE_PRINTF + +/* Define to 1 if you have the `snprintf' function. */ +#undef HAVE_SNPRINTF + +/* Define to 1 if you have the `sprintf' function. */ +#undef HAVE_SPRINTF + +/* Define to 1 if you have the `sscanf' function. */ +#undef HAVE_SSCANF + /* Define to 1 if you have the `stat' function. */ #undef HAVE_STAT @@ -90,6 +105,15 @@ /* Define to 1 if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H +/* Define to 1 if you have the `vfprintf' function. */ +#undef HAVE_VFPRINTF + +/* Define to 1 if you have the `vsnprintf' function. */ +#undef HAVE_VSNPRINTF + +/* Define to 1 if you have the `vsprintf' function. */ +#undef HAVE_VSPRINTF + /* Define to 1 if you have the `_stat' function. */ #undef HAVE__STAT |