f06a83c0b2
libjava/ 2007-08-04 Matthias Klose <doko@ubuntu.com> Import GNU Classpath (libgcj-import-20070727). * Regenerate class and header files. * Regenerate auto* files. * include/jvm.h: * jni-libjvm.cc (Jv_JNI_InvokeFunctions): Rename type. * jni.cc (_Jv_JNIFunctions, _Jv_JNI_InvokeFunctions): Likewise. * jni.cc (_Jv_JNI_CallAnyMethodA, _Jv_JNI_CallAnyVoidMethodA, _Jv_JNI_CallMethodA, _Jv_JNI_CallVoidMethodA, _Jv_JNI_CallStaticMethodA, _Jv_JNI_CallStaticVoidMethodA, _Jv_JNI_NewObjectA, _Jv_JNI_SetPrimitiveArrayRegion): Constify jvalue parameter. * java/lang/reflect/natMethod.cc (_Jv_CallAnyMethodA): Likewise. * java/lang/VMFloat.java (toString, parseFloat): New. * gnu/awt/xlib/XToolkit.java (setAlwaysOnTop, isModalityTypeSupported, isModalExclusionTypeSupported): New (stub only). * gnu/awt/xlib/XCanvasPeer.java (requestFocus): Likewise. * gnu/awt/xlib/XFramePeer.java (updateMinimumSize, updateIconImages, updateFocusableWindowState, setModalBlocked, getBoundsPrivate, setAlwaysOnTop): Likewise. * gnu/awt/xlib/XFontPeer.java (canDisplay): Update signature. * scripts/makemake.tcl: Ignore gnu/javax/sound/sampled/gstreamer, ignore javax.sound.sampled.spi.MixerProvider, ignore .in files. * HACKING: Mention --enable-gstreamer-peer, removal of generated files. libjava/classpath/ 2007-08-04 Matthias Klose <doko@ubuntu.com> * java/util/EnumMap.java (clone): Add cast. From-SVN: r127204
27 lines
1.0 KiB
Makefile
27 lines
1.0 KiB
Makefile
## Input file for automake to generate the Makefile.in used by configure
|
|
|
|
# lib first, to compile .class files before native code, last examples
|
|
SUBDIRS = lib doc external include native resource scripts tools $(EXAMPLESDIR)
|
|
DIST_SUBDIRS = lib doc external include native resource scripts tools examples
|
|
|
|
# Allow users to pass site-specific flags to autoreconf via an env var.
|
|
## GCJ LOCAL: we need an extra -I here.
|
|
ACLOCAL_AMFLAGS = -I m4 -I ../.. -I ../../config ${LOCAL_AUTORECONF_FLAGS}
|
|
|
|
native: lib
|
|
|
|
EXTRA_DIST = HACKING BUGS THANKYOU mauve-classpath LICENSE \
|
|
ChangeLog-2003 ChangeLog-2004 ChangeLog-2005 ChangeLog-2006 \
|
|
ChangeLog.gnujaxp.1 ChangeLog.gnujaxp.2 ChangeLog.libxmlj \
|
|
autogen.sh
|
|
|
|
#DISTCHECK_CONFIGURE_FLAGS = --enable-gjdoc
|
|
|
|
dist-hook:
|
|
-$(mkinstalldirs) $(distdir)/include
|
|
-cp -f $(top_srcdir)/include/*.in $(distdir)/include
|
|
-cp -f $(top_srcdir)/include/*.h $(distdir)/include
|
|
|
|
ChangeLog:
|
|
cvs2cl.pl -b --gmt --log-opts "-d'1998-06-30< now'" --window 7200 --usermap ChangeLog.usermap --ignore ChangeLog --fsf
|