From e2e8e5258f79a25fdc6dad9392e290a843fe3627 Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Fri, 7 Dec 2001 08:30:31 +0000 Subject: Removed link-time dependency on JAWT to solve PATH problems --- CNativeCode/OpenGL_X11.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'CNativeCode/OpenGL_X11.c') diff --git a/CNativeCode/OpenGL_X11.c b/CNativeCode/OpenGL_X11.c index f7e0795..6d0dec5 100644 --- a/CNativeCode/OpenGL_X11.c +++ b/CNativeCode/OpenGL_X11.c @@ -84,11 +84,20 @@ static jboolean verbose = JNI_FALSE; +JNIEXPORT jboolean JNICALL Java_gl4java_GLContext_loadJAWT0 +(JNIEnv *env, jclass unused, jstring str) +{ + (void)env; + (void)unused; + (void)str; + return JNI_FALSE; +} + JNIEXPORT jboolean JNICALL -Java_gl4java_GLContext_useJAWT( JNIEnv *env, jobject obj ) +Java_gl4java_GLContext_useJAWT( JNIEnv *env, jclass unused ) { (void)env; - (void)obj; + (void)unused; return JNI_FALSE; } -- cgit v1.2.3