2004-08-20 17:14:18 +02:00
|
|
|
/* include/config.h.in. Generated from configure.ac by autoheader. */
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* Define if building universal (internal helper macro) */
|
|
|
|
#undef AC_APPLE_UNIVERSAL_BUILD
|
|
|
|
|
2007-01-09 20:58:05 +01:00
|
|
|
/* Name of default AWT toolkit */
|
|
|
|
#undef AWT_TOOLKIT
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if system properties shouldn't be read from
|
|
|
|
getenv("GCJ_PROPERTIES"). */
|
|
|
|
#undef DISABLE_GETENV_PROPERTIES
|
|
|
|
|
|
|
|
/* Define if java.net native functions should be stubbed out. */
|
|
|
|
#undef DISABLE_JAVA_NET
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if we should ignore arguments to main(). */
|
|
|
|
#undef DISABLE_MAIN_ARGS
|
|
|
|
|
|
|
|
/* Define if you're running eCos. */
|
|
|
|
#undef ECOS
|
|
|
|
|
|
|
|
/* Define if you are using JVMPI. */
|
|
|
|
#undef ENABLE_JVMPI
|
|
|
|
|
|
|
|
/* Short GCJ version ID */
|
|
|
|
#undef GCJVERSION
|
|
|
|
|
|
|
|
/* Define if gethostbyaddr_r returns 'int'. */
|
|
|
|
#undef GETHOSTBYADDR_R_RETURNS_INT
|
|
|
|
|
|
|
|
/* Define if gethostbyname_r returns 'int'. */
|
|
|
|
#undef GETHOSTBYNAME_R_RETURNS_INT
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `access' function. */
|
|
|
|
#undef HAVE_ACCESS
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <arpa/inet.h> header file. */
|
|
|
|
#undef HAVE_ARPA_INET_H
|
2003-03-02 14:46:06 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if Boehm GC in use. */
|
|
|
|
#undef HAVE_BOEHM_GC
|
2002-01-06 22:38:15 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have u_int32_t */
|
|
|
|
#undef HAVE_BSD_INT32_DEFINED
|
2002-01-06 22:38:15 +01:00
|
|
|
|
configure.ac (INTERPRETER): New AM_CONDITIONAL.
* configure.ac (INTERPRETER): New AM_CONDITIONAL.
* scripts/makemake.tcl (package_map): Mark jdwp and jvmti packages
as being for interpreter only. Place interpreter related files in
'if INTERPRETER' block.
(interpreter_package_files): New list.
(interpreter_header_vars): Ditto.
(emit_package_rule_to_list): Renamed from emit_package_rule with
new target list parameter.
(emit_package_rule): Rewritten to call emit_package_rule_to_list.
(emit_interpreter_rule): New function.
(emit_source_var): Place interpreter related files in
interpreter_header_vars.
* Makefile.am (ACLOCAL_AMFLAGS): Add -I libltdl.
(libgcj_interpret_source_files): New variable.
(libgcj_la_SOURCES): Move jvmti.cc and interpret.cc to
libgcj_interpret_source_files and include
libgcj_interpret_source_files.
(nat_jdwp_source_files): New variable.
(nat_jvmti_source_files): Ditto.
(nat_source_files): Move jdwp and jvmti related files to
nat_jdwp_source_files and nat_jvmti_source_files and include
nat_jdwp_source_files and nat_jvmti_source_files.
* Makefile.in: Regenerate.
* include/Makefile.in: Ditto.
* testsuite/Makefile.in: Ditto.
* gcj/Makefile.in: Ditto.
* sources.am: Ditto.
* configure: Ditto.
* include/config.h.in: Ditto.
* interpret.cc: Remove #ifdef INTERPRETER block.
* stacktrace.cc (UnwindTraceFn): Do not handle proxy frames if
interpreter disabled.
* include/java-interp.h (_Jv_FrameType): Move outside of
#ifdef INTERPRETER block.
* include/execution.h (_Jv_IndirectCompiledEngine::do_get_closure_list,
_Jv_InterpreterEngine, _Jv_soleInterpreterEngine): Place in
#ifdef INTERPRETER block.
* jni.cc (jvmti.h, jvmti-int.h): Only include if INTERPRETER is
defined.
(_Jv_JNI_PopSystemFrame, _Jv_JNI_GetEnv): Only do jvmti processing
if INTERPRETER is defined.
* prims.cc (jvmti.h, jvmti-int.h, Jdwp.h, VMVirtualMachine.h): Only
include if INTERPRETER is defined.
(defaultJdwpOptions, jdwpOptions, jvmti_agent_onload_func,
jvmti_agent_onunload_func, jvmti_agentonload, jvmti_agentonunload,
jvmti_agent_opts, load_jvmti_agent): Only define if INTERPRETER is
defined.
(parse_x_arg): Only process 'runjdwp:' if INTERPRETER is defined.
(parse_init_args): Only process jvmti related options if
INTERPRETER is defined.
(_Jv_CreateJavaVM): Only call _Jv_JVMTI_Init if INTERPRETER is
defined.
(_Jv_RunMain): Only do jvmti and jdwp processing if INTERPRETER is
defined.
* link.cc (jvmti.h, jvmti-int.h): Only include if INTERPRETER is
defined.
(_Jv_ThrowNoClassDefFoundError, _Jv_Linker::create_error_method):
Define if if INTERPRETER is not defined.
(_Jv_Linker::wait_for_state): Only do jvmti proccessing if
INTERPRETER is defined.
* boehm.cc (closure_list_pointer, finalize_closure_list,
_Jv_ClosureListFinalizer): Only define if INTERPRETER is
defined.
* java/lang/natThread.cc (jvmti.h, jvmti-int.h): Only include if
INTERPRETER is defined.
(finish_, _Jv_NotifyThreadStart): Only do jvmti proccessing if
INTERPRETER is defined.
* java/lang/Class.h (_Jv_InterpreterEngine): Move declaration
and friend declaration inside #ifdef INTERPRETER block.
* java/lang/natClass.cc (_Jv_ClosureList::releaseClosures,
_Jv_ClosureList::registerClosure, _Jv_GetInterpClassSourceFile):
Only define if INTERPRETER is defined.
* java/lang/reflect/natVMProxy.cc (UnsupportedOperationException.h):
Include.
(generateProxyClass): Throw UnsupportedOperationException unless
INTERPRETER is defined.
From-SVN: r127097
2007-07-31 18:17:21 +02:00
|
|
|
/* Define to 1 if the target assembler supports thread-local storage. */
|
|
|
|
#undef HAVE_CC_TLS
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `chmod' function. */
|
|
|
|
#undef HAVE_CHMOD
|
1999-08-21 15:15:55 +02:00
|
|
|
|
2006-03-09 19:47:54 +01:00
|
|
|
/* Define if you have clock_gettime() */
|
|
|
|
#undef HAVE_CLOCK_GETTIME
|
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
|
|
|
|
*/
|
|
|
|
#undef HAVE_DECL_TZNAME
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <dirent.h> header file. */
|
|
|
|
#undef HAVE_DIRENT_H
|
2002-01-06 22:38:15 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have dladdr() */
|
|
|
|
#undef HAVE_DLADDR
|
2000-11-29 05:53:37 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
|
|
#undef HAVE_DLFCN_H
|
1999-08-21 15:15:55 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if dlopen is available */
|
|
|
|
#undef HAVE_DLOPEN
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <fcntl.h> header file. */
|
|
|
|
#undef HAVE_FCNTL_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `fstat' function. */
|
1999-09-03 09:42:40 +02:00
|
|
|
#undef HAVE_FSTAT
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `fsync' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_FSYNC
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `ftime' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_FTIME
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `ftruncate' function. */
|
2002-08-29 20:05:15 +02:00
|
|
|
#undef HAVE_FTRUNCATE
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `getcwd' function. */
|
1999-12-15 23:38:56 +01:00
|
|
|
#undef HAVE_GETCWD
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have the 'gethostbyaddr_r' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_GETHOSTBYADDR_R
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have the 'gethostbyname_r' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_GETHOSTBYNAME_R
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have the 'gethostname' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_GETHOSTNAME
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if gethostname is declared in <unistd.h>. */
|
|
|
|
#undef HAVE_GETHOSTNAME_DECL
|
|
|
|
|
2006-08-07 00:43:05 +02:00
|
|
|
/* Define to 1 if you have the `getifaddrs' function. */
|
|
|
|
#undef HAVE_GETIFADDRS
|
|
|
|
|
2006-09-27 23:24:23 +02:00
|
|
|
/* Define if _Unwind_GetIPInfo is available. */
|
|
|
|
#undef HAVE_GETIPINFO
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `getpwuid_r' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_GETPWUID_R
|
|
|
|
|
2007-03-23 01:06:41 +01:00
|
|
|
/* Define to 1 if you have the `getrlimit' function. */
|
|
|
|
#undef HAVE_GETRLIMIT
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `gettimeofday' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_GETTIMEOFDAY
|
|
|
|
|
2007-03-26 20:15:31 +02:00
|
|
|
/* Define if you have the 'gmtime_r' function */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_GMTIME_R
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have the iconv() function. */
|
|
|
|
#undef HAVE_ICONV
|
|
|
|
|
2006-08-07 00:43:05 +02:00
|
|
|
/* Define to 1 if you have the <ifaddrs.h> header file. */
|
|
|
|
#undef HAVE_IFADDRS_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if inet6 structures are defined in netinet/in.h. */
|
|
|
|
#undef HAVE_INET6
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `inet_addr' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_INET_ADDR
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `inet_aton' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_INET_ATON
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `inet_ntoa' function. */
|
1999-07-02 20:50:21 +02:00
|
|
|
#undef HAVE_INET_NTOA
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `inet_pton' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_INET_PTON
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have int32_t and uint32_t. */
|
|
|
|
#undef HAVE_INT32_DEFINED
|
|
|
|
|
|
|
|
/* Define if <inttypes.h> is available */
|
|
|
|
#undef HAVE_INTTYPES_H
|
|
|
|
|
|
|
|
/* Define to 1 if 'in_addr_t' is defined in sys/types.h or netinet/in.h. */
|
|
|
|
#undef HAVE_IN_ADDR_T
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <langinfo.h> header file. */
|
|
|
|
#undef HAVE_LANGINFO_H
|
|
|
|
|
|
|
|
/* Define if your <locale.h> file defines LC_MESSAGES. */
|
|
|
|
#undef HAVE_LC_MESSAGES
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <locale.h> header file. */
|
|
|
|
#undef HAVE_LOCALE_H
|
|
|
|
|
|
|
|
/* Define is you have 'localtime' in <time.h> */
|
|
|
|
#undef HAVE_LOCALTIME
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `localtime_r' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_LOCALTIME_R
|
|
|
|
|
2006-06-06 17:09:20 +02:00
|
|
|
/* Define to 1 if you have the `lstat' function. */
|
|
|
|
#undef HAVE_LSTAT
|
|
|
|
|
2007-01-09 20:58:05 +01:00
|
|
|
/* Define to 1 if you have the <magic.h> header file. */
|
|
|
|
#undef HAVE_MAGIC_H
|
|
|
|
|
2007-01-31 18:11:11 +01:00
|
|
|
/* Define if magic.h declares magic_t */
|
|
|
|
#undef HAVE_MAGIC_T
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `memcpy' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_MEMCPY
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `memmove' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_MEMMOVE
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <memory.h> header file. */
|
|
|
|
#undef HAVE_MEMORY_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `mkdir' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_MKDIR
|
|
|
|
|
2006-05-01 22:02:27 +02:00
|
|
|
/* Define to 1 if you have the `mmap' function. */
|
2004-08-12 18:20:11 +02:00
|
|
|
#undef HAVE_MMAP
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <netdb.h> header file. */
|
|
|
|
#undef HAVE_NETDB_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <netinet/in.h> header file. */
|
|
|
|
#undef HAVE_NETINET_IN_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <net/if.h> header file. */
|
|
|
|
#undef HAVE_NET_IF_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `nl_langinfo' function. */
|
2000-09-11 02:35:51 +02:00
|
|
|
#undef HAVE_NL_LANGINFO
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `open' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_OPEN
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `opendir' function. */
|
2002-02-07 04:24:12 +01:00
|
|
|
#undef HAVE_OPENDIR
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you have /proc/self/exe */
|
|
|
|
#undef HAVE_PROC_SELF_EXE
|
|
|
|
|
2007-02-15 18:25:24 +01:00
|
|
|
/* Define if you have /proc/self/maps */
|
|
|
|
#undef HAVE_PROC_SELF_MAPS
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if using POSIX threads that have the mutexattr functions. */
|
|
|
|
#undef HAVE_PTHREAD_MUTEXATTR_INIT
|
|
|
|
|
|
|
|
/* Define to 1 if you have the <pwd.h> header file. */
|
|
|
|
#undef HAVE_PWD_H
|
|
|
|
|
2006-06-06 17:09:20 +02:00
|
|
|
/* Define to 1 if you have the `readlink' function. */
|
|
|
|
#undef HAVE_READLINK
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `rename' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_RENAME
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `rmdir' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_RMDIR
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `sched_yield' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SCHED_YIELD
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `select' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SELECT
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `setlocale' function. */
|
2000-11-29 05:53:37 +01:00
|
|
|
#undef HAVE_SETLOCALE
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `sigaction' function. */
|
2001-06-02 10:34:33 +02:00
|
|
|
#undef HAVE_SIGACTION
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `sleep' function. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SLEEP
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define it socklen_t typedef is in sys/socket.h. */
|
|
|
|
#undef HAVE_SOCKLEN_T
|
2000-01-17 16:45:24 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `stat' function. */
|
|
|
|
#undef HAVE_STAT
|
2000-01-17 16:45:24 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <stdint.h> header file. */
|
|
|
|
#undef HAVE_STDINT_H
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
|
|
#undef HAVE_STDLIB_H
|
[multiple changes]
Fri May 28 22:20:03 1999 Anthony Green <green@cygnus.com>
* java/lang/fdlibm.h: Don't use __uint32_t. Include mprec.h.
* java/lang/e_log.c: Don't use __uint32_t.
1999-05-27 Eric Christopher <echristo@cygnus.com>
* configure: Rebuilt
* configure.in: Fixed ISO C9X and namespace collision with __uint32_t
* acconfig.h: Rebuilt
* include/config.h.in: Rebuilt
* java/lang/mprec.h, java/lang/e_acos.c, java/lang/e_asin.c,
java/lang/e_atan2.c, java/lang/e_exp.c, java/lang/e_fmod.c,
e_log.c, java/lang/e_pow.c, java/lang/e_rem_pio2.c,
java/lang/e_remainder.c, java/lang/e_sqrt.c, java/lang/fdlibm.h,
k_tan.c, java/lang/mprec.h, java/lang/s_atan.c,
java/lang/s_ceil.c, java/lang/s_copysign.c, java/lang/s_fabs.c,
s_floor.c, java/lang/s_rint.c, java/lang/sf_rint.c: Fixed ISO C9X
and namespace collision with __uint32_t
From-SVN: r27729
1999-06-24 22:06:09 +02:00
|
|
|
|
2007-07-15 23:13:05 +02:00
|
|
|
/* Define to 1 if you have the `strerror_r' function. */
|
|
|
|
#undef HAVE_STRERROR_R
|
2000-09-11 02:35:51 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <strings.h> header file. */
|
|
|
|
#undef HAVE_STRINGS_H
|
2001-01-12 20:16:05 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <string.h> header file. */
|
|
|
|
#undef HAVE_STRING_H
|
2002-09-18 12:15:52 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if struct hostent_data is defined in netdb.h */
|
|
|
|
#undef HAVE_STRUCT_HOSTENT_DATA
|
2002-10-21 03:50:14 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if struct ipv6_mreq is defined in netinet/in.h. */
|
|
|
|
#undef HAVE_STRUCT_IPV6_MREQ
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if struct ip_mreq is defined in netinet/in.h. */
|
|
|
|
#undef HAVE_STRUCT_IP_MREQ
|
1999-04-07 16:42:40 +02:00
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* Define to 1 if `struct tm' is a member of `tm_zone'. */
|
2004-08-12 18:20:11 +02:00
|
|
|
#undef HAVE_STRUCT_TM_TM_ZONE
|
[multiple changes]
Fri May 28 22:20:03 1999 Anthony Green <green@cygnus.com>
* java/lang/fdlibm.h: Don't use __uint32_t. Include mprec.h.
* java/lang/e_log.c: Don't use __uint32_t.
1999-05-27 Eric Christopher <echristo@cygnus.com>
* configure: Rebuilt
* configure.in: Fixed ISO C9X and namespace collision with __uint32_t
* acconfig.h: Rebuilt
* include/config.h.in: Rebuilt
* java/lang/mprec.h, java/lang/e_acos.c, java/lang/e_asin.c,
java/lang/e_atan2.c, java/lang/e_exp.c, java/lang/e_fmod.c,
e_log.c, java/lang/e_pow.c, java/lang/e_rem_pio2.c,
java/lang/e_remainder.c, java/lang/e_sqrt.c, java/lang/fdlibm.h,
k_tan.c, java/lang/mprec.h, java/lang/s_atan.c,
java/lang/s_ceil.c, java/lang/s_copysign.c, java/lang/s_fabs.c,
s_floor.c, java/lang/s_rint.c, java/lang/sf_rint.c: Fixed ISO C9X
and namespace collision with __uint32_t
From-SVN: r27729
1999-06-24 22:06:09 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/config.h> header file. */
|
[multiple changes]
Fri May 28 22:20:03 1999 Anthony Green <green@cygnus.com>
* java/lang/fdlibm.h: Don't use __uint32_t. Include mprec.h.
* java/lang/e_log.c: Don't use __uint32_t.
1999-05-27 Eric Christopher <echristo@cygnus.com>
* configure: Rebuilt
* configure.in: Fixed ISO C9X and namespace collision with __uint32_t
* acconfig.h: Rebuilt
* include/config.h.in: Rebuilt
* java/lang/mprec.h, java/lang/e_acos.c, java/lang/e_asin.c,
java/lang/e_atan2.c, java/lang/e_exp.c, java/lang/e_fmod.c,
e_log.c, java/lang/e_pow.c, java/lang/e_rem_pio2.c,
java/lang/e_remainder.c, java/lang/e_sqrt.c, java/lang/fdlibm.h,
k_tan.c, java/lang/mprec.h, java/lang/s_atan.c,
java/lang/s_ceil.c, java/lang/s_copysign.c, java/lang/s_fabs.c,
s_floor.c, java/lang/s_rint.c, java/lang/sf_rint.c: Fixed ISO C9X
and namespace collision with __uint32_t
From-SVN: r27729
1999-06-24 22:06:09 +02:00
|
|
|
#undef HAVE_SYS_CONFIG_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/filio.h> header file. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SYS_FILIO_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SYS_IOCTL_H
|
|
|
|
|
2007-03-23 01:06:41 +01:00
|
|
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
|
|
|
#undef HAVE_SYS_RESOURCE_H
|
|
|
|
|
2006-05-26 01:19:12 +02:00
|
|
|
/* Define to 1 if you have the <sys/rw_lock.h> header file. */
|
|
|
|
#undef HAVE_SYS_RW_LOCK_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/select.h> header file. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SYS_SELECT_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/socket.h> header file. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SYS_SOCKET_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SYS_STAT_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/time.h> header file. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SYS_TIME_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
1999-04-07 16:42:40 +02:00
|
|
|
#undef HAVE_SYS_TYPES_H
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `time' function. */
|
|
|
|
#undef HAVE_TIME
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if global 'timezone' exists. */
|
|
|
|
#undef HAVE_TIMEZONE
|
2003-01-31 18:59:00 +01:00
|
|
|
|
2005-09-27 22:03:09 +02:00
|
|
|
/* Define to 1 if the target supports thread-local storage. */
|
|
|
|
#undef HAVE_TLS
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use
|
|
|
|
`HAVE_STRUCT_TM_TM_ZONE' instead. */
|
|
|
|
#undef HAVE_TM_ZONE
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you don't have `tm_zone' but do have the external array
|
|
|
|
`tzname'. */
|
|
|
|
#undef HAVE_TZNAME
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `uname' function. */
|
|
|
|
#undef HAVE_UNAME
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if your platform has the global _timezone variable. */
|
|
|
|
#undef HAVE_UNDERSCORE_TIMEZONE
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the <unistd.h> header file. */
|
|
|
|
#undef HAVE_UNISTD_H
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `unlink' function. */
|
|
|
|
#undef HAVE_UNLINK
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `usleep' function. */
|
|
|
|
#undef HAVE_USLEEP
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if usleep is declared in <unistd.h>. */
|
|
|
|
#undef HAVE_USLEEP_DECL
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the `utime' function. */
|
|
|
|
#undef HAVE_UTIME
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* Define to 1 if you have the file `/proc/self/exe'. */
|
2004-08-12 18:20:11 +02:00
|
|
|
#undef HAVE__PROC_SELF_EXE
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* Define to 1 if you have the file `/proc/self/maps'. */
|
2007-02-15 18:25:24 +01:00
|
|
|
#undef HAVE__PROC_SELF_MAPS
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define as const if the declaration of iconv() needs const. */
|
|
|
|
#undef ICONV_CONST
|
2000-05-19 19:55:34 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if you want a bytecode interpreter. */
|
|
|
|
#undef INTERPRETER
|
2000-05-19 19:55:34 +02:00
|
|
|
|
2005-04-02 04:26:51 +02:00
|
|
|
/* API compatibility version string */
|
|
|
|
#undef JV_API_VERSION
|
|
|
|
|
2001-07-18 19:06:24 +02:00
|
|
|
/* Define if hash synchronization is in use */
|
|
|
|
#undef JV_HASH_SYNCHRONIZATION
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if <inttypes.h> is available */
|
|
|
|
#undef JV_HAVE_INTTYPES_H
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Indicate that linker is not able to 8-byte align static data */
|
|
|
|
#undef JV_LINKER_CANNOT_8BYTE_ALIGN_STATICS
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2005-04-02 04:26:51 +02:00
|
|
|
/* Compatibility version string */
|
|
|
|
#undef JV_VERSION
|
|
|
|
|
configure.ac: Handle --enable-gc-debug.
* configure.ac: Handle --enable-gc-debug.
* configure: Regenerate.
* include/config.h.in (LIBGCJ_GC_DEBUG): Add.
* boehm.cc: Include gc_mark.h, javaxfc.h, but no GC private files.
Rearrange include file order.
(GC_DEBUG): Set if LIBGCJ_GC_DEBUG is set.
(GC_finalize_all, GC_debug_generic_malloc): Don't declare.
(disable_gc_mutex): Delete along with all references.
(_Jv_MarkObj, _Jv_MarkArray): Use public types,
adjust for debug header size.
(_Jv_AllocObj, _Jv_allocPtrFreeObj): Define out of line for
debug case.
(_Jv_AllocArray): Declare min_heap_addr only if needed.
(gcj_describe_type_fn): New.
(_Jv_InitGC): Use GC_new_free_list, GC_new_proc, and GC_new_kind.
Register gcj_describe_type_fn.
* include/boehm-gc.h:
(_Jv_AllocObj, _Jv_allocPtrFreeObj):
Don't define, but declare, for debug case.
* java/lang/natObject.cc:
(GC_DEBUG): Define if LIBGCJ_GC_DEBUG is set.
From-SVN: r86686
2004-08-28 02:45:56 +02:00
|
|
|
/* Define if we want to use debug calls into the garbage collector. */
|
|
|
|
#undef LIBGCJ_GC_DEBUG
|
|
|
|
|
2007-01-09 20:58:05 +01:00
|
|
|
/* Installation prefix */
|
|
|
|
#undef LIBGCJ_PREFIX
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if using POSIX threads on Linux. */
|
|
|
|
#undef LINUX_THREADS
|
2003-10-22 18:35:17 +02:00
|
|
|
|
2005-09-13 01:50:01 +02:00
|
|
|
/* Define to the name of the environment variable that determines the dynamic
|
|
|
|
library search path. */
|
|
|
|
#undef LTDL_SHLIBPATH_VAR
|
|
|
|
|
configure.ac (INTERPRETER): New AM_CONDITIONAL.
* configure.ac (INTERPRETER): New AM_CONDITIONAL.
* scripts/makemake.tcl (package_map): Mark jdwp and jvmti packages
as being for interpreter only. Place interpreter related files in
'if INTERPRETER' block.
(interpreter_package_files): New list.
(interpreter_header_vars): Ditto.
(emit_package_rule_to_list): Renamed from emit_package_rule with
new target list parameter.
(emit_package_rule): Rewritten to call emit_package_rule_to_list.
(emit_interpreter_rule): New function.
(emit_source_var): Place interpreter related files in
interpreter_header_vars.
* Makefile.am (ACLOCAL_AMFLAGS): Add -I libltdl.
(libgcj_interpret_source_files): New variable.
(libgcj_la_SOURCES): Move jvmti.cc and interpret.cc to
libgcj_interpret_source_files and include
libgcj_interpret_source_files.
(nat_jdwp_source_files): New variable.
(nat_jvmti_source_files): Ditto.
(nat_source_files): Move jdwp and jvmti related files to
nat_jdwp_source_files and nat_jvmti_source_files and include
nat_jdwp_source_files and nat_jvmti_source_files.
* Makefile.in: Regenerate.
* include/Makefile.in: Ditto.
* testsuite/Makefile.in: Ditto.
* gcj/Makefile.in: Ditto.
* sources.am: Ditto.
* configure: Ditto.
* include/config.h.in: Ditto.
* interpret.cc: Remove #ifdef INTERPRETER block.
* stacktrace.cc (UnwindTraceFn): Do not handle proxy frames if
interpreter disabled.
* include/java-interp.h (_Jv_FrameType): Move outside of
#ifdef INTERPRETER block.
* include/execution.h (_Jv_IndirectCompiledEngine::do_get_closure_list,
_Jv_InterpreterEngine, _Jv_soleInterpreterEngine): Place in
#ifdef INTERPRETER block.
* jni.cc (jvmti.h, jvmti-int.h): Only include if INTERPRETER is
defined.
(_Jv_JNI_PopSystemFrame, _Jv_JNI_GetEnv): Only do jvmti processing
if INTERPRETER is defined.
* prims.cc (jvmti.h, jvmti-int.h, Jdwp.h, VMVirtualMachine.h): Only
include if INTERPRETER is defined.
(defaultJdwpOptions, jdwpOptions, jvmti_agent_onload_func,
jvmti_agent_onunload_func, jvmti_agentonload, jvmti_agentonunload,
jvmti_agent_opts, load_jvmti_agent): Only define if INTERPRETER is
defined.
(parse_x_arg): Only process 'runjdwp:' if INTERPRETER is defined.
(parse_init_args): Only process jvmti related options if
INTERPRETER is defined.
(_Jv_CreateJavaVM): Only call _Jv_JVMTI_Init if INTERPRETER is
defined.
(_Jv_RunMain): Only do jvmti and jdwp processing if INTERPRETER is
defined.
* link.cc (jvmti.h, jvmti-int.h): Only include if INTERPRETER is
defined.
(_Jv_ThrowNoClassDefFoundError, _Jv_Linker::create_error_method):
Define if if INTERPRETER is not defined.
(_Jv_Linker::wait_for_state): Only do jvmti proccessing if
INTERPRETER is defined.
* boehm.cc (closure_list_pointer, finalize_closure_list,
_Jv_ClosureListFinalizer): Only define if INTERPRETER is
defined.
* java/lang/natThread.cc (jvmti.h, jvmti-int.h): Only include if
INTERPRETER is defined.
(finish_, _Jv_NotifyThreadStart): Only do jvmti proccessing if
INTERPRETER is defined.
* java/lang/Class.h (_Jv_InterpreterEngine): Move declaration
and friend declaration inside #ifdef INTERPRETER block.
* java/lang/natClass.cc (_Jv_ClosureList::releaseClosures,
_Jv_ClosureList::registerClosure, _Jv_GetInterpClassSourceFile):
Only define if INTERPRETER is defined.
* java/lang/reflect/natVMProxy.cc (UnsupportedOperationException.h):
Include.
(generateProxyClass): Throw UnsupportedOperationException unless
INTERPRETER is defined.
From-SVN: r127097
2007-07-31 18:17:21 +02:00
|
|
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
|
|
|
*/
|
|
|
|
#undef LT_OBJDIR
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if MinGW libgcj uses the Windows UNICODE OS API. */
|
|
|
|
#undef MINGW_LIBGCJ_UNICODE
|
2003-09-11 19:25:47 +02:00
|
|
|
|
|
|
|
/* Define if getuid() and friends are missing. */
|
|
|
|
#undef NO_GETUID
|
|
|
|
|
2004-08-19 20:12:25 +02:00
|
|
|
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
|
|
|
|
#undef NO_MINUS_C_MINUS_O
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Name of package */
|
|
|
|
#undef PACKAGE
|
1999-08-01 02:14:32 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to the address where bug reports for this package should be sent. */
|
|
|
|
#undef PACKAGE_BUGREPORT
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to the full name of this package. */
|
|
|
|
#undef PACKAGE_NAME
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to the full name and version of this package. */
|
|
|
|
#undef PACKAGE_STRING
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to the one symbol short name of this package. */
|
|
|
|
#undef PACKAGE_TARNAME
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* Define to the home page for this package. */
|
|
|
|
#undef PACKAGE_URL
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to the version of this package. */
|
|
|
|
#undef PACKAGE_VERSION
|
2003-09-11 19:25:47 +02:00
|
|
|
|
|
|
|
/* Define if pthread_mutex_t has m_count member. */
|
|
|
|
#undef PTHREAD_MUTEX_HAVE_M_COUNT
|
|
|
|
|
|
|
|
/* Define if pthread_mutex_t has __m_count member. */
|
|
|
|
#undef PTHREAD_MUTEX_HAVE___M_COUNT
|
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* The size of `void *', as computed by sizeof. */
|
2002-02-07 04:24:12 +01:00
|
|
|
#undef SIZEOF_VOID_P
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if if the synchronization code should try to avoid pthread_self
|
|
|
|
calls by caching thread IDs in a hashtable. */
|
|
|
|
#undef SLOW_PTHREAD_SELF
|
2001-12-16 23:33:02 +01:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if you have the ANSI C header files. */
|
|
|
|
#undef STDC_HEADERS
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if struct tm has tm_gmtoff field. */
|
|
|
|
#undef STRUCT_TM_HAS_GMTOFF
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if your <sys/time.h> declares `struct tm'. */
|
|
|
|
#undef TM_IN_SYS_TIME
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if we're to use libffi. */
|
|
|
|
#undef USE_LIBFFI
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define if libltdl is in use. */
|
|
|
|
#undef USE_LTDL
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Version number of package */
|
|
|
|
#undef VERSION
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2009-08-22 15:22:20 +02:00
|
|
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
|
|
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
|
|
|
#if defined AC_APPLE_UNIVERSAL_BUILD
|
|
|
|
# if defined __BIG_ENDIAN__
|
|
|
|
# define WORDS_BIGENDIAN 1
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# ifndef WORDS_BIGENDIAN
|
|
|
|
# undef WORDS_BIGENDIAN
|
|
|
|
# endif
|
|
|
|
#endif
|
2004-09-22 22:59:16 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to 1 if the X Window System is missing or not being used. */
|
|
|
|
#undef X_DISPLAY_MISSING
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Required define if using POSIX threads */
|
|
|
|
#undef _POSIX_PTHREAD_SEMANTICS
|
2003-09-11 19:25:47 +02:00
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Required define if using POSIX threads */
|
|
|
|
#undef _REENTRANT
|
|
|
|
|
2009-04-28 06:02:30 +02:00
|
|
|
/* Define this if you want runtime debugging enabled. */
|
|
|
|
#undef __GCJ_DEBUG
|
|
|
|
|
2004-08-12 18:20:11 +02:00
|
|
|
/* Define to `int' if <sys/types.h> does not define. */
|
|
|
|
#undef ssize_t
|