aboutsummaryrefslogtreecommitdiffstats
path: root/make/build-nativewindow.xml
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2011-08-25 20:59:32 -0500
committerWade Walker <[email protected]>2011-08-25 20:59:32 -0500
commitcd31c4f0dc7a5f5595e0ca2f0e815d3814ebd94e (patch)
tree7f0395665ec64224a4fa9a8aa6541b6a32244862 /make/build-nativewindow.xml
parent5047b00127d976281098c39bee2d211fdbda5123 (diff)
Fix classpaths to work with Java 7's javah
Java 7's javah requires all referenced classes to be classpath, even if they're just method parameters and never instantiated. Java 6's version of javah didn't require this.
Diffstat (limited to 'make/build-nativewindow.xml')
-rw-r--r--make/build-nativewindow.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build-nativewindow.xml b/make/build-nativewindow.xml
index e3fcdb5e2..7653452a4 100644
--- a/make/build-nativewindow.xml
+++ b/make/build-nativewindow.xml
@@ -675,7 +675,7 @@
</target>
<target name="c.build.nativewindow.windowlib.windows" if="isWindows">
- <javah destdir="${src.generated.c}/Windows" classpath="${classes}" class="jogamp.nativewindow.windows.GDI" />
+ <javah destdir="${src.generated.c}/Windows" classpath="${classes}:${gluegen.root}/build/classes" class="jogamp.nativewindow.windows.GDI" />
<c.build c.compiler.src.files="c.src.files.windows"
output.lib.name="nativewindow_win32"