I'm committing this patch (left out for some reason), as found by Mark
and Andrew (gnu_andy), so those of you with a 64 bit system can now
enjoy Radio Classpath :)
Mario
2007-08-19 Mario Torre <[EMAIL PROTECTED]>
* native/jni/gstreamer-peer/gst_native_pipeline.c:
(init_pointer_IDs): fix typo that prevents compilation on 64 bit
systems.
--
Lima Software - http://www.limasoftware.net/
GNU Classpath Developer - http://www.classpath.org/
Fedora Ambassador - http://fedoraproject.org/wiki/MarioTorre
Jabber: [EMAIL PROTECTED]
pgp key: http://subkeys.pgp.net/ PGP Key ID: 80F240CF
Fingerprint: BA39 9666 94EC 8B73 27FA FC7C 4086 63E3 80F2 40CF
Please, support open standards:
http://opendocumentfellowship.org/petition/
http://www.nosoftwarepatents.com/
### Eclipse Workspace Patch 1.0
#P classpath
Index: native/jni/gstreamer-peer/gst_native_pipeline.c
===================================================================
RCS file: /sources/classpath/classpath/native/jni/gstreamer-peer/gst_native_pipeline.c,v
retrieving revision 1.1
diff -u -r1.1 gst_native_pipeline.c
--- native/jni/gstreamer-peer/gst_native_pipeline.c 18 Aug 2007 15:23:14 -0000 1.1
+++ native/jni/gstreamer-peer/gst_native_pipeline.c 19 Aug 2007 16:06:09 -0000
@@ -327,8 +327,8 @@
PointerClass = JCL_FindClass (env, "gnu/classpath/Pointer64");
if (PointerClass != NULL)
{
- PointerDataID = (*env)->GetFieldID (env, PointerClass, "data", "J");
- PointerConstructorID = (*env)->GetMethodID (env, PointerClass, "<init>",
+ pointerDataFID = (*env)->GetFieldID (env, PointerClass, "data", "J");
+ pointerConstructorMID = (*env)->GetMethodID (env, PointerClass, "<init>",
"(J)V");
}
#else