2003-10-13 21:18:24 +00:00
|
|
|
/* Headers/Additions/GNUstepGUI/config.h.in. Generated from configure.ac by autoheader. */
|
2003-07-31 23:52:10 +00:00
|
|
|
|
|
|
|
/* Define to 1 if you have the <audiofile.h> header file. */
|
|
|
|
#undef HAVE_AUDIOFILE_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
|
|
#undef HAVE_INTTYPES_H
|
|
|
|
|
2003-10-13 21:18:24 +00:00
|
|
|
/* Define to 1 if you have the <jpeglib.h> header file. */
|
|
|
|
#undef HAVE_JPEGLIB_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `audiofile' library (-laudiofile). */
|
|
|
|
#undef HAVE_LIBAUDIOFILE
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `jpeg' library (-ljpeg). */
|
|
|
|
#undef HAVE_LIBJPEG
|
|
|
|
|
2003-07-31 23:52:10 +00:00
|
|
|
/* Define to 1 if you have the `m' library (-lm). */
|
|
|
|
#undef HAVE_LIBM
|
|
|
|
|
2003-10-13 21:18:24 +00:00
|
|
|
/* Define to 1 if you have the `png' library (-lpng). */
|
|
|
|
#undef HAVE_LIBPNG
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `tiff' library (-ltiff). */
|
|
|
|
#undef HAVE_LIBTIFF
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `z' library (-lz). */
|
|
|
|
#undef HAVE_LIBZ
|
|
|
|
|
2003-07-31 23:52:10 +00:00
|
|
|
/* Define to 1 if you have the <memory.h> header file. */
|
|
|
|
#undef HAVE_MEMORY_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `rint' function. */
|
|
|
|
#undef HAVE_RINT
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `rintf' function. */
|
|
|
|
#undef HAVE_RINTF
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <stdint.h> header file. */
|
|
|
|
#undef HAVE_STDINT_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
|
|
#undef HAVE_STDLIB_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <strings.h> header file. */
|
|
|
|
#undef HAVE_STRINGS_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <string.h> header file. */
|
|
|
|
#undef HAVE_STRING_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
|
|
#undef HAVE_SYS_STAT_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
|
|
#undef HAVE_SYS_TYPES_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <unistd.h> header file. */
|
|
|
|
#undef HAVE_UNISTD_H
|
|
|
|
|
|
|
|
/* Define to the address where bug reports for this package should be sent. */
|
|
|
|
#undef PACKAGE_BUGREPORT
|
|
|
|
|
|
|
|
/* Define to the full name of this package. */
|
|
|
|
#undef PACKAGE_NAME
|
|
|
|
|
|
|
|
/* Define to the full name and version of this package. */
|
|
|
|
#undef PACKAGE_STRING
|
|
|
|
|
|
|
|
/* Define to the one symbol short name of this package. */
|
|
|
|
#undef PACKAGE_TARNAME
|
|
|
|
|
|
|
|
/* Define to the version of this package. */
|
|
|
|
#undef PACKAGE_VERSION
|
|
|
|
|
|
|
|
/* Define to 1 if you have the ANSI C header files. */
|
|
|
|
#undef STDC_HEADERS
|
|
|
|
|
|
|
|
|
|
|
|
/* Define for those who don't have rintf and/or rint */
|
|
|
|
#ifndef HAVE_RINTF
|
|
|
|
#define rintf rint
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_RINT
|
|
|
|
#define DEFINE_RINT_IF_MISSING \
|
|
|
|
static double rint(double a) \
|
|
|
|
{ \
|
|
|
|
return (floor(a+0.5)); \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define DEFINE_RINT_IF_MISSING
|
|
|
|
#endif
|
|
|
|
|