mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-02 18:11:05 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28511 72102866-910b-0410-8b05-ffd578937521
122 lines
3.1 KiB
C
122 lines
3.1 KiB
C
/* Headers/Additions/GNUstepGUI/config.h.in. Generated from configure.ac by autoheader. */
|
|
|
|
/* Define if you have the aspell header */
|
|
#undef HAVE_ASPELL
|
|
|
|
/* Define to 1 if you have the <aspell.h> header file. */
|
|
#undef HAVE_ASPELL_H
|
|
|
|
/* Define to 1 if you have the <cups/cups.h> header file. */
|
|
#undef HAVE_CUPS_CUPS_H
|
|
|
|
/* Define to 1 if you have the `getmntent' function. */
|
|
#undef HAVE_GETMNTENT
|
|
|
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
#undef HAVE_INTTYPES_H
|
|
|
|
/* Define to 1 if you have the <jpeglib.h> header file. */
|
|
#undef HAVE_JPEGLIB_H
|
|
|
|
/* Define to 1 if you have the `aspell' library (-laspell). */
|
|
#undef HAVE_LIBASPELL
|
|
|
|
/* Define to 1 if you have the `gif' library (-lgif). */
|
|
#undef HAVE_LIBGIF
|
|
|
|
/* Define to 1 if you have the `icns' library (-licns). */
|
|
#undef HAVE_LIBICNS
|
|
|
|
/* Define to 1 if you have the `jpeg' library (-ljpeg). */
|
|
#undef HAVE_LIBJPEG
|
|
|
|
/* Define to 1 if you have the `m' library (-lm). */
|
|
#undef HAVE_LIBM
|
|
|
|
/* Define to 1 if you have the `png' library (-lpng). */
|
|
#undef HAVE_LIBPNG
|
|
|
|
/* Define to 1 if you have the <libpng/png.h> header file. */
|
|
#undef HAVE_LIBPNG_PNG_H
|
|
|
|
/* Define to 1 if you have the `tiff' library (-ltiff). */
|
|
#undef HAVE_LIBTIFF
|
|
|
|
/* Define to 1 if you have the `ungif' library (-lungif). */
|
|
#undef HAVE_LIBUNGIF
|
|
|
|
/* Define to 1 if you have the `z' library (-lz). */
|
|
#undef HAVE_LIBZ
|
|
|
|
/* Define to 1 if you have the <memory.h> header file. */
|
|
#undef HAVE_MEMORY_H
|
|
|
|
/* Define to 1 if you have the <mntent.h> header file. */
|
|
#undef HAVE_MNTENT_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/mntent.h> header file. */
|
|
#undef HAVE_SYS_MNTENT_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
|
|
|
|
/* mntent structure member name */
|
|
#undef MNT_MEMB
|
|
|
|
/* 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
|
|
|