Re: call AC_DISABLE_SHARED conditionally for a certain host

2006-02-14 Thread Ralf Wildenhues
* Ralf Wildenhues wrote on Tue, Feb 14, 2006 at 11:49:37AM CET: Well, hope this gets you set for the release: use | AC_CANONICAL_HOST | case $host in | *-*-linux* | *-*-darwin*) | AC_ENABLE_SHARED | ;; | *-*-mingw32*) | AC_DISABLE_SHARED | ;; | esac and make

Re: call AC_DISABLE_SHARED conditionally for a certain host

2006-02-14 Thread Ralf Wildenhues
* Florian Schricker wrote on Tue, Feb 14, 2006 at 12:52:11PM CET: On Tue, 2006-02-14 at 11:49 +0100, Ralf Wildenhues wrote: Please let us know where the MINGW32 problems are. If you did not use `-no-undefined' while linking, please do so. Maybe that solves your issues. I got quite

Re: call AC_DISABLE_SHARED conditionally for a certain host

2006-02-14 Thread Florian Schricker
Hi! (again - you helped me out on some automake issue already! :-)) On Tue, 2006-02-14 at 11:49 +0100, Ralf Wildenhues wrote: Currently I am on the way on moving some software projects from custom makefiles to autoconf. These projects mostly depend on Xerces-C; since we want to support

AS_CASE (was: call AC_DISABLE_SHARED conditionally for a certain host)

2006-02-14 Thread Ralf Wildenhues
Playing the ball back to autoconf-patches.. * Ralf Wildenhues wrote on Tue, Feb 14, 2006 at 03:01:41PM CET: This will not work: *snip* because the arguments to LT_INIT are interpreted at m4 time already. And this case $host in foo) LT_INIT([disable-shared]) ;; *) LT_INIT ;; esac

Re: AS_CASE

2006-02-14 Thread Paul Eggert
Ralf Wildenhues [EMAIL PROTECTED] writes: OK to apply this patch? Yes, it looks good to me, except please change this: AT_SETUP([AS@[EMAIL PROTECTED] and AS@[EMAIL PROTECTED]) to this: AT_SETUP([AS@[EMAIL PROTECTED] and AS@[EMAIL PROTECTED]) Thanks.

Re: AS_CASE

2006-02-14 Thread Ralf Wildenhues
Hi Paul, * Paul Eggert wrote on Wed, Feb 15, 2006 at 05:58:59AM CET: Ralf Wildenhues [EMAIL PROTECTED] writes: OK to apply this patch? Yes, it looks good to me, except please change this: AT_SETUP([AS@[EMAIL PROTECTED] and AS@[EMAIL PROTECTED]) Changed and installed. Thanks for the