#ifndef XP_MAC'd out the inclusion of java_lang_Integer.c and code that used it. It seems kind of goofy including a C file that's already in the JavaRuntime project. The recent change also caused JRI headers and stubs to get generated for java_lang_Integer, and elsewhere we are using the JDK headers and stubs. Well sort this out this week.

This commit is contained in:
gordon 1998-06-08 11:14:04 +00:00
parent bdccc5ec8d
commit d946d9d41a

View File

@ -52,7 +52,7 @@
#ifndef XP_MAC
#include "_jri/java_lang_Integer.c"
#else
#include "java_lang_Integer.c"
/* #include "java_lang_Integer.c" */
#endif
#include "xp_mcom.h"
@ -70,7 +70,9 @@ void SU_Reg_Initialize(JRIEnv* env)
use_netscape_softupdate_RegKeyEnumerator(env);
use_netscape_softupdate_RegEntryEnumerator(env);
use_netscape_softupdate_RegistryException(env);
#ifndef XP_MAC
use_java_lang_Integer(env);
#endif
}
/* ------------------------------------------------------------------
@ -364,6 +366,7 @@ native_netscape_softupdate_VersionRegistry_getRefCount(
struct java_lang_Class* clazz,
struct java_lang_String* component )
{
#ifndef XP_MAC
REGERR status;
int cRefCount;
@ -378,7 +381,7 @@ native_netscape_softupdate_VersionRegistry_getRefCount(
}
}
#endif /* XP_MAC */
return NULL;
}