[cp-patches] [patch] make darwin 'work' with classpath

2005-07-24 Thread Andreas Tobler
) gui apps with it. Regards, Andreas 2005-07-24 Andreas Tobler [EMAIL PROTECTED] * configure.ac (LIBVERSION): Check against darwin to set module 'no' for it. Modules under darwin are not linkable. See Apple docs. * configure: Regenerate Index: classpath/configure.ac

[cp-patches] [patch] examples README

2005-07-25 Thread Andreas Tobler
Hi all, a little patchlet for the README in the examples directory. Ok? Andreas 2005-07-25 Andreas Tobler [EMAIL PROTECTED] * examples/README: Add GNULookAndFeel.java to the compile command. Index: README === RCS file

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-01 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Sun, 2005-07-24 at 23:05 +0200, Andreas Tobler wrote: the attached patch changes link behavior of darwin ppc and makes it work in reality. For detailed explanation please search the apple developer pages. In short, when building against a .so we have

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-01 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Mon, 2005-08-01 at 23:29 +0200, Andreas Tobler wrote: Well, I will investigate a bit more. But my guess is here: with jamvm and other vm you run interpreted code, where the classpath lib is the last bit in the chain. On gcj/libgcj you can build/run native

[cp-patches] Re: [commit-cp] classpath java/awt/Component.java ./ChangeLog

2005-08-02 Thread Andreas Tobler
Hi Roman, Roman Kennke wrote: CVSROOT:/cvsroot/classpath Module name:classpath Branch: Changes by: Roman Kennke [EMAIL PROTECTED] 05/08/02 15:13:01 Modified files: java/awt : Component.java . : ChangeLog Log message: 2005-08-02 Roman

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-02 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Tue, 2005-08-02 at 06:41 +0200, Andreas Tobler wrote: Well, here I should have said 'once', with the actual cp I didn't. :( But I know jamvm will fail because it in src/dll.c:300 it checks against .so and new will .dylib on darwin. In the meantime I built

Re: [cp-patches] [patch] make darwin 'work' with classpath

2005-08-03 Thread Andreas Tobler
Hi Mark, [EMAIL PROTECTED] wrote: The awt based app seems to work when I resize the frame (I tried awt.Demo). If I do not resize, I get a blank frame with the menubar only. Resizing the frame brings me the buttons to see, except the close button. This is all against gnome-2.10 core. I am

Re: [cp-patches] Revert glibtoolize patch for Darwin

2005-09-03 Thread Andreas Tobler
of version numbering or in terms of explaining all the details behind ? In terms of version I propose this. Yes, it is tested on darwin ppc. Thanks for review! Andreas 2005-09-03 Andreas Tobler [EMAIL PROTECTED] * autogen.sh: Document libtool version needed for Darwin. (LIBTOOLIZE

[cp-patches] fix double unreferencing bug in GdkFontPeer.c

2005-09-17 Thread Andreas Tobler
Hello, this patchlet fixes a bug which tried to unref pfont-font twice. Andreas 2005-09-17 Andreas Tobler [EMAIL PROTECTED] * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkFontPeer.c (Java_gnu_java_awt_peer_gtk_GdkFontPeer_dispose): Fix double unreferencing pfont-font

Re: [cp-patches] fix double unreferencing bug in GdkFontPeer.c

2005-09-19 Thread Andreas Tobler
Tom Tromey wrote: Andreas == Andreas Tobler [EMAIL PROTECTED] writes: Andreas this patchlet fixes a bug which tried to unref pfont-font twice. IMO this one could have gone in as obvious; this is clearly just a cut-and-paste error. Committed. Thanks, Andreas

Re: [cp-patches] [patch] gtk-peer, replace deprecated g*k functions

2005-09-22 Thread Andreas Tobler
Hello all, I'm going to commit this patch asap. Tom F. approved offline. Also, Roman sent a part of this patch for GdkGraphics (today), he did it right, I mixed some arguments. Thanks, included. Thanks goes also to Paul Jenner, he tested against gtk-2.4. Andreas Index:

[cp-patches] fix one more deprecated gtk issue

2005-09-24 Thread Andreas Tobler
Hello, the attached patch eliminates another deprecated gtk case. It was approved by Tom F, but I missed to commit. Doing it asap. Andreas 2005-09-24 Andreas Tobler [EMAIL PROTECTED] * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkToolkit.c

[cp-patches] fix GdkGraphics2D segfault

2005-09-29 Thread Andreas Tobler
Hi all, this patch fixes a segfault with Metal theme and -Dgnu.java.awt.peer.gtk.Graphics=Graphics2D on our swing demo. The side effect is that the window bars in Dektop World look a bit ugly. Ok? Andreas 2005-09-29 Andreas Tobler [EMAIL PROTECTED] * native/jni/gtk-peer

Re: [cp-patches] FYI: ComboBoxDemo

2005-09-29 Thread Andreas Tobler
Hi Dave, David Gilbert wrote: I added this small demo that I've been using while working on the UI delegate for the JComboBox under the MetalLookAndFeel: 2005-09-29 David Gilbert [EMAIL PROTECTED] * examples/gnu/classpath/examples/swing/ComboBoxDemo.java: new demo. Here's a screenshot

Re: [cp-patches] fix GdkGraphics2D segfault

2005-09-30 Thread Andreas Tobler
Hi all, I commited this one since I feel it goes under obvious. If you do not think so, I'll revert asap. I wanted to ask Tom for official approval. But I did not reach him. He gave me offline confirmation that this is a bug. Andreas Andreas Tobler wrote: Hi all, this patch fixes

[cp-patches] Re: [commit-cp] classpath ./ChangeLog gnu/CORBA/CDR/Vio.java gn...

2005-10-02 Thread Andreas Tobler
Hi Audrius, Found 3 semantic errors compiling ../../classpath/gnu/javax/rmi/CORBA/corbaObjectOutput.java: 55. import debugging.CORBA_stream; ^^ *** Semantic Error: The import debugging/CORBA_stream is not valid, since it does not name a type in a

Re: [cp-patches] Complete javax.imageio

2005-10-03 Thread Andreas Tobler
Hi Tom, hopefully you can enlight a java newbie :) In javax/imageio/ImageReader.java you change the following for example protected List progressListeners = new ArrayList(); to protected List progressListeners = null; The java doc says: progressListeners: A List of currently registered

[cp-patches] Re: imageio/ImageReader|Writer check *Listeners

2005-10-03 Thread Andreas Tobler
Hi Tom, Thomas Fitzsimmons wrote: @@ -185,8 +185,10 @@ { if (listener == null) return; - -progressListeners.add(listener); +if (progressListeners != null) + { + progressListeners.add(listener); + } If progressListeners is null here it should be

Re: [cp-patches] Re: imageio/ImageReader|Writer check *Listeners

2005-10-04 Thread Andreas Tobler
Thomas Fitzsimmons wrote: I replied to the previous message before seeing this one. Yes, this way is shorter/better. Please commit. Thank you. I committed the attached one. Andreas Index: javax/imageio/ImageReader.java ===

[cp-patches] minor config issue for QT4 and OS-X

2005-10-24 Thread Andreas Tobler
Hello To avoid confusion in kaffe and elsewhere it would make sense to rename the --with-qtdir to --with-qt4dir in the OS-X Qt config section. Kaffe for example uses --with-qtdir for Qt versions 2/3/embedded. Ok? Andreas 2005-10-24 Andreas Tobler [EMAIL PROTECTED] * configure.ac

[cp-patches] NEWS item Qt4 configury for OS-X

2005-10-26 Thread Andreas Tobler
Hi all, for the completeness. Ok? 2005-10-26 Andreas Tobler [EMAIL PROTECTED] * NEWS: Mention Qt4 configury for OS-X. Index: NEWS === RCS file: /cvsroot/classpath/classpath/NEWS,v retrieving revision 1.99 diff -u -i

[cp-patches] [patch] GdkGraphics2D.c debug code update

2005-11-06 Thread Andreas Tobler
Hello, this patch is maybe useless, but for completeness. ok? Andreas 2005-11-06 Andreas Tobler [EMAIL PROTECTED] * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkGraphics2D.c (Java_gnu_java_awt_peer_gtk_GdkGraphics2D_setGradientUnlocked): Update debug output

[cp-patches] [patch] bump Qt version check to 4.1

2005-12-25 Thread Andreas Tobler
! 2005-12-25 Andreas Tobler [EMAIL PROTECTED] * configure.ac (QT_CFLAGS): Check for 4.1.0 version and for QtCore to have the right include flags. Index: configure.ac === RCS file: /cvsroot/classpath/classpath

[cp-patches] [patch] fix Qt-4.1 build

2005-12-25 Thread Andreas Tobler
? Andreas 2005-12-25 Andreas Tobler [EMAIL PROTECTED] * native/jni/qt-peer/mainqtthread.cpp: Remove call to disable double buffering. Ability has gone in Qt-4.1.x. Index: native/jni/qt-peer/mainqtthread.cpp === RCS

Re: [cp-patches] RFC: checking for socklen_t

2006-01-01 Thread Andreas Tobler
Christian Thalinger wrote: Hi! I tried to compile classpath on a quite old system: $ uname -a OSF1 mips.complang.tuwien.ac.at V4.0 878 alpha And on this system socklen_t isn't defined. This macro taken from http://ac-archive.sourceforge.net/Miscellaneous/type_socklen_t.html checks for

Re: [cp-patches] RFC: checking for socklen_t

2006-01-02 Thread Andreas Tobler
Christian Thalinger wrote: On Sun, 2006-01-01 at 23:42 +0100, Andreas Tobler wrote: Well, he hasn't yet, but I'll add my comment here. I'd like to see it as an unsigned int and not an int. Most systems I know use unsigned int for socklen_t. Posix.1g also recommends to use uint32_t

[cp-patches] [patch] qtpeers, silence some warnings with gcc-4.2

2006-05-26 Thread Andreas Tobler
Hello all, the below patch silences this warnings: classpath/native/jni/qt-peer/eventmethods.h:111: warning: deprecated conversion from string constant to 'char*'' There are quite a lot of them. And they pop up in gcc-head. Ok to commit? Andreas 2006-05-26 Andreas Tobler [EMAIL

Re: [cp-patches] [patch] qtpeers, silence some warnings with gcc-4.2

2006-05-27 Thread Andreas Tobler
Sven de Marothy wrote: On Fri, 2006-05-26 at 15:23 -0600, Tom Tromey wrote: Andreas == Andreas Tobler [EMAIL PROTECTED] writes: Andreas classpath/native/jni/qt-peer/eventmethods.h:111: warning: deprecated Andreas conversion from string constant to 'char*'' Andreas There are quite a lot

[cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-28 Thread Andreas Tobler
unresolved when Sven's patch gets in. Is this ok or do we need some more testing? Thanks, Andreas 2006-05-28 Andreas Tobler [EMAIL PROTECTED] * configure.ac: Add Xrender check, substitute XRENDER_LIBS and XRENDER_CFLAGS. * native/jni/gtk-peer/Makefile.am

Re: [cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-29 Thread Andreas Tobler
Sven de Marothy wrote: On Sun, 2006-05-28 at 20:07 -0400, Thomas Fitzsimmons wrote: Can you add to the GdkGraphics2D NEWS entry to mention the new XRENDER dependency? Please commit, Well, we shouldn't really have an Xrender dependency. There's a check there in the code for a reason. So we'll

Re: [cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-30 Thread Andreas Tobler
Hi Tom, Thomas Fitzsimmons wrote: would you please try this patch on your platform and commit it if it works? Thanks for the patch, I had something similar in mind. Unfortunately your version doesn't help me, I need to add -lXrender to the X_EXTRA_LIBS then your patch works. Attached the

Re: [cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-30 Thread Andreas Tobler
Mark Wielaard wrote: On Tue, 2006-05-30 at 21:03 +0200, Andreas Tobler wrote: -static void +void cp_java_awt_peer_gtk_ComponentGraphics_grab_current_drawable(GtkWidget *widget, GdkDrawable **draw, GdkWindow **win) This really is a static function. Please keep it that way. ld

Re: [cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-30 Thread Andreas Tobler
Mark Wielaard wrote: On Tue, 2006-05-30 at 21:26 +0200, Andreas Tobler wrote: Mark Wielaard wrote: On Tue, 2006-05-30 at 21:03 +0200, Andreas Tobler wrote: -static void +void cp_java_awt_peer_gtk_ComponentGraphics_grab_current_drawable(GtkWidget *widget, GdkDrawable **draw

Re: [cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-31 Thread Andreas Tobler
Mark Wielaard wrote: Hi, On Tue, 2006-05-30 at 22:43 +0200, Andreas Tobler wrote: This really is a static function. Please keep it that way. ld: Undefined symbols: _cp_java_awt_peer_gtk_ComponentGraphics_grab_current_drawable ? Yeah, that is strange. When do you get that? Well, we use

Re: [cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-31 Thread Andreas Tobler
Hello, I committed the attached patch. Andreas 2006-05-31 Thomas Fitzsimmons [EMAIL PROTECTED] Andreas Tobler [EMAIL PROTECTED] * configure.ac: Check for libXrender when the GTK peers are enabled, and set HAVE_XRENDER accordingly. Add -lXrender

Re: [cp-patches] [rfc] add check for Xrender for recent and future functionality.

2006-05-31 Thread Andreas Tobler
Thomas Fitzsimmons wrote: Andreas Tobler wrote: Mark Wielaard wrote: Hi, On Tue, 2006-05-30 at 22:43 +0200, Andreas Tobler wrote: This really is a static function. Please keep it that way. ld: Undefined symbols: _cp_java_awt_peer_gtk_ComponentGraphics_grab_current_drawable ? Yeah

[cp-patches] Re: [patch] prefix CairoGraphics2D_getCairoT correctly

2006-05-31 Thread Andreas Tobler
hungry. Sure. Better ? Andreas 2006-06-01 Andreas Tobler [EMAIL PROTECTED] * native/jni/gtk-peer/cairographics2d.h: Rename/prefix function CairoGraphics2D_getCairoT to cp_gtk_getCairoT correctly. * native/jni/gtk-peer/gnu_java_awt_peer_gtk_CairoSurface.c

[cp-patches] Re: [patch] prefix CairoGraphics2D_getCairoT correctly

2006-05-31 Thread Andreas Tobler
Thomas Fitzsimmons wrote: Andreas Tobler wrote: Thomas Fitzsimmons wrote: - cr = CairoGraphics2D_getCairoT(env, cairographics); + cr = Java_gnu_java_awt_peer_gtk_CairoGraphics2D_getCairoT(env, cairographics); Shouldn't the prefix be cp_gtk_ since this is not a JNI method implementation

Re: [cp-patches] Cleanup new compiler warnings

2006-06-01 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GdkTextLayout.c (Java_gnu_java_awt_peer_gtk_GdkTextLayout_cairoDrawGdkTextLayout): Remove unused cairographics2d struct. (_moveTo, _lineTo, _quadTo, _curveTo): Mark arguments const. This part results in

[cp-patches] cleanup hardcoded Xlibs

2006-06-01 Thread Andreas Tobler
Hello all, this patch makes some X11 libs dependent on configury. And removes hardcoded Makefile.am entries. Ok? Thanks, Andreas 2006-06-02 Andreas Tobler [EMAIL PROTECTED] * configure.ac: Add -lX11 and -lXtst to XTEST_LIBS. (XTEST_LIBS): New, substitute

Re: [cp-patches] cleanup hardcoded Xlibs

2006-06-02 Thread Andreas Tobler
Sven de Marothy wrote: On Fri, 2006-06-02 at 00:12 +0200, Andreas Tobler wrote: Hello all, this patch makes some X11 libs dependent on configury. And removes hardcoded Makefile.am entries. Ok? Thanks, Andreas Good good. Thanks! I found a follow up which I missed last night. Also ok

Re: [cp-patches] fix image handling on big endian systems

2006-06-28 Thread Andreas Tobler
Andreas Tobler wrote: Hello all, this patch brings the image handling back to work on big endian systems. Please check on a little endian system! I hope the comments in the code are ok. Ok to commit? Commited after review test by Sven. Thanks Andreas Andreas 2006-06-27 Andreas

[cp-patches] [patch] PR28369

2006-07-13 Thread Andreas Tobler
Hello all, I'll commit this one asap. Thanks to Sven_M! This fixes PR 28369 on big and little endian platforms. Andreas 2006-07-13 Andreas Tobler [EMAIL PROTECTED] PR awt/28369: * gnu/java/awt/peer/gtk/CairoSurface.java (ColorModel): Swap red and blue mask. Index

[cp-patches] workaround jikes build error

2006-07-17 Thread Andreas Tobler
Hello all, this patch brings classpath again to work with jikes. Ok for head? Andreas 2006-07-17 Andreas Tobler [EMAIL PROTECTED] * javax/swing/text/html/HTMLEditorKit.java: Rearrange import statements to make it compile again under jikes. Note added. Index: javax/swing

[cp-patches] cleanup imports in gnu/java/awt/peer/gtk

2006-07-17 Thread Andreas Tobler
Hello all, writing the CL took more time than the patch itself. Built with ecj and jikes. Ok for head? Andreas 2006-07-18 Andreas Tobler [EMAIL PROTECTED] * gnu/java/awt/peer/gtk/BufferedImageGraphics.java: Remove unneeded imports. * gnu/java/awt/peer/gtk

Re: [cp-patches] [RFC] speed up CairoSurface

2006-07-21 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Sat, 2006-07-22 at 00:00 +0200, Andreas Tobler wrote: But he also suggested to reorganise the code path to check for (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN) only once and not for all pixels. Thanks Assen! I attach a patch which does

[cp-patches] [RFT] another CairoSurface optimization

2006-07-22 Thread Andreas Tobler
Hello all, Assen pointed out that this code could be optimized a bit more. Here the result. Would some Little Endian hackers please test if it still works ? Thanks to Assen. Ok for head if it works on LE too? Andreas 2006-07-22 Andreas Tobler [EMAIL PROTECTED] * gnu/java/awt

[cp-patches] cleanup CairoGraphics2D.c a bit more

2006-07-26 Thread Andreas Tobler
Hello all, this patchlet marks some unused variables and removes some unnecessary checks on it. ok? Andreas 2006-07-26 Andreas Tobler [EMAIL PROTECTED] * native/jni/gtk-peer/gnu_java_awt_peer_gtk_CairoGraphics2D.c (Java_gnu_java_awt_peer_gtk_CairoGraphics2D_cairoSetMatrix

[cp-patches] committed fix for BasicStroke.java

2006-08-04 Thread Andreas Tobler
Hello all, I just committed the following patch to make compilation work again. Thanks to gnu_andrew :) Andreas 2006-08-04 Andreas Tobler [EMAIL PROTECTED] * java/awt/BasicStroke.java (dashedStroke): Cast coords.clone to double[]. Index: java/awt/BasicStroke.java

[cp-patches] [patch] native GdkPixbufDecoder cleanup some leaks

2006-08-11 Thread Andreas Tobler
Hi all, here a patchlet which needs a review. The first one seems obvious, the others are maybe looking for a more elegant way. Ideas? Here it saves in a little app around 400 bytes, yes I know, not much Thanks, Andreas 2006-08-11 Andreas Tobler [EMAIL PROTECTED] * native

[cp-patches] fix darwin cvs build

2006-08-28 Thread Andreas Tobler
Andreas Tobler [EMAIL PROTECTED] * configure.ac: Add check for gethostbyname_r. Add check for MSG_NOSIGNAL and SO_NOSIGPIPE. * native/jni/native-lib/cpnet.c (SOCKET_NOSIGNAL): Define SOCKET_NOSIGNAL according to the configure check. (cpnet_send): Use

Re: [cp-patches] fix darwin cvs build

2006-08-30 Thread Andreas Tobler
Tom Tromey wrote: Andreas == Andreas Tobler [EMAIL PROTECTED] writes: Andreas the attached patch fixes the current cvs on darwin-ppc. Not tested on Andreas functionality yet. But it builds :) This mostly looks ok to me. I just had one question. Andreas +#if defined (HAVE_MSG_NOSIGNAL

[cp-patches] Install default.css

2006-08-31 Thread Andreas Tobler
Hello, this patchlet fixes the install of the default.css (and other future .css files). Now we can run the html swing demo. Ok? Andreas 2006-08-31 Andreas Tobler [EMAIL PROTECTED] * lib/Makefile.am (cssfiles): Add new rule to install css files. Index: lib/Makefile.am

Re: [cp-patches] fix darwin cvs build

2006-08-31 Thread Andreas Tobler
Tom Tromey wrote: Andreas == Andreas Tobler [EMAIL PROTECTED] writes: Andreas the attached patch fixes the current cvs on darwin-ppc. Not tested on Andreas functionality yet. But it builds :) This mostly looks ok to me. I just had one question. Andreas +#if defined (HAVE_MSG_NOSIGNAL

[cp-patches] FYI: fix duplicate header and adjust __attribute....

2006-09-05 Thread Andreas Tobler
Hello, I committed this patchlet to fix some cosmetics. Andreas 2006-09-05 Andreas Tobler [EMAIL PROTECTED] * native/jni/gtk-peer/gnu_java_awt_peer_gtk_GtkVolatileImage.c: Adjust __attribute to __attribute__. * native/jni/java-nio/java_nio_MappedByteBufferImpl.c

Re: [cp-patches] [patch] add rule to install the sample html files

2006-11-06 Thread Andreas Tobler
Hi Mark, Mark Wielaard wrote: On Mon, 2006-11-06 at 22:11 +0100, Andreas Tobler wrote: this patchlet installs the necessary html files in the example directory. Ok? Looks good to me. I think we also need the html files in the example.zip file itself like the icons to make it self-contained

[cp-patches] [patch] GtkImageConsumer, fix big endian.

2006-11-11 Thread Andreas Tobler
fixed it. Is it ok? Can a LE user please verify if I did not break anything there? Thanks, Andreas 2006-11-11 Andreas Tobler [EMAIL PROTECTED] * gnu/java/awt/peer/gtk/GtkImageConsumer.java (setPixels): Handle data from big endian systems correctly. Index: gnu/java/awt/peer/gtk

[cp-patches] AUTHORS update

2006-11-13 Thread Andreas Tobler
Hi all, I added myself to the file. Thanks, Andreas 2006-11-13 Andreas Tobler [EMAIL PROTECTED] * AUTHORS: Add myself.

[cp-patches] [patch] examples pictures consolidated

2007-01-05 Thread Andreas Tobler
Andreas Tobler [EMAIL PROTECTED] * examples/gnu/classpath/examples/awt/AicasGraphicsBenchmark.java (AicasGraphicsBenchmark): Load images from ../icons. * examples/gnu/classpath/examples/java2d/J2dBenchmark.java (init): Likewise. * examples/Makefile.am

Re: [cp-patches] [patch] examples pictures consolidated

2007-01-06 Thread Andreas Tobler
Mark Wielaard wrote: Hi Andreas, On Fri, 2007-01-05 at 23:16 +0100, Andreas Tobler wrote: this patch makes the java2d benchmark and the aicasgraphicsbenchmark run on installed systems. We copy the two image files in one common place and are happy ;) Ok for trunk? Yes, thanks. Thanks

[cp-patches] [patch] forward gcj/classpath/doc patch

2007-03-09 Thread Andreas Tobler
Hi all, I'm going to commit this one soon. It is a change which is already in gcc. Fails w/o patch under darwin-ppc. Andreas 2007-03-09 Andreas Tobler [EMAIL PROTECTED] Port change from gcc: 2007-03-06 Matthias Klose [EMAIL PROTECTED] * doc/Makefile.am

Re: [cp-patches] FYI: fix for hacked up autotools toolchains

2007-04-23 Thread Andreas Tobler
hi ya, Dalibor Topic wrote: the following patch adds support for passing additional flags to autoreconf by using an environment variable, LOCAL_ACLOCAL_AMFLAGS. s/LOCAL_ACLOCAL_AMFLAGS/LOCAL_AUTORECONF_FLAGS Gruss Andreas

[cp-patches] [patch] committed, update autogen.sh

2007-05-18 Thread Andreas Tobler
Hi all, I committed the attached patch to reflect current situation on Darwin. It's only comment work so I took it as obvious. Andreas 2007-05-18 Andreas Tobler [EMAIL PROTECTED] * autogen.sh (have_libtool): Update comments for Darwin. Index: autogen.sh

[cp-patches] [patch] classpath/tools/Makefile.am

2009-12-23 Thread Andreas Tobler
on a darwin, linux of freebsd machine. Ok for gcc trunk? If yes, could someone please commit it also to classpath? Thanks, Andreas 2009-12-23 Andreas Tobler a.tob...@schweiz.org * tools/Makefile.am (GJDOC_EX): Use find -name pattern -prune -o. * tools/Makefile.in: Regenerate. Index

[cp-patches] PING: Re: [patch] classpath/tools/Makefile.am

2010-01-09 Thread Andreas Tobler
PING! Thanks, Andreas On 23.12.09 21:20, Andreas Tobler wrote: Hi all, while building libjava on i386-pc-solaris2.11 I got a failure which reminded me to PR23653, four years back. 'find -path' is not portable. Solaris native find complains about. The attached patch fixes this. It produces

[cp-patches] [patch] fix solaris find issue

2010-02-08 Thread Andreas Tobler
Hi all, I'd like to commit the following patch. It is already in gcc tree and I have the ok (Tromey) to commit. But I'd like to inform herewith. Everybody ok with? Details here: http://gcc.gnu.org/ml/java-patches/2009-q4/msg00067.html Thanks, Andreas 2010-02-07 Andreas Tobler andre

[cp-patches] [patch] update FreeBSD 10 configury changes

2011-11-28 Thread Andreas Tobler
Hi, the below patch makes sure that FreeBSD-10 and up gets properly detected in config.rpath. Ok? I'm going to apply the same patch on gcc trunk and gcc-4.6. Thanks, Andreas 2011-11-28 Andreas Tobler andre...@fgznet.ch * config.rpath (ld_shlibs): Fix detection of FreeBSD-10