1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/***********************************************************************
* This file is included by autoheader to create config.h.in which is
* used by configure to create config.h. We include $(top_srcdir) as
* an INCLUDE in every native Makefile.am and then use the values from
* the defines to structure our program for a native platform.
* In this file, only include things autoheader cannot determine for
* itself, for example when using AC_DEFINE.
*
* Leave the blank line below, required by autoheader.
***********************************************************************/
/* Define as 1 if building for Japhar */
#define WITH_JAPHAR 0
/* Define as 1 if building for Kaffe */
#define WITH_KAFFE 0
/* #undef PACKAGE */
/* #undef VERSION */
/* Define if building with debugging code included, this is not -g */
#undef DEBUG
/* Define if you have int32_t and uint32_t */
#undef HAVE_INT32_DEFINED
/* Define if you have u_int32_t */
#undef HAVE_BSD_INT32_DEFINED
/************************************************************************
* Leave the blank line there, required by autoheader.
************************************************************************/
|