Are these patches for Axis 2? If so can you make this clear in the subject line with [Axis2] thankyou
| Damitha Kumarage <[EMAIL PROTECTED]>
05/12/2005 09:59
|
|
Hi Anuradha,
patch is applied .
thanks
damitha
Anuradha Ratnaweera wrote:
>Hi all,
>
>The attached patch cleans up autogen.sh. Is there a reason not to use
>--add-missing in autogen.sh? If yes, please use the patch without it.
> However, I couldn't compile (yes, I compiled the whole thing :-) )
>without running automake --add-missing because install-sh etc are
>missing.
>
>And yes, still it generates many warnings, will try to fix them when
>(and if) I get time... :-)
>
> Anuradha
>--
>http://anuradha-ratnaweera.blogspot.com
>http://www.linux.lk/~anuradha/
>
>
>------------------------------------------------------------------------
>
>--- c.old/autogen.sh 2005-12-05 11:30:54.000000000 +0600
>+++ c/autogen.sh 2005-12-05 14:39:43.000000000 +0600
>@@ -1,13 +1,13 @@
> #!/bin/bash
>
>-echo "run libtoolize." &&
>-libtoolize &&
>-echo "run aclocal." &&
>-aclocal &&
>-echo "run autoconf." &&
>-autoconf &&
>-echo "run autoheader." &&
>-autoheader &&
>-echo "run automake." &&
>-#automake --add-missing --gnu
>-automake
>+for i in libtoolize aclocal autoconf autoheader
>+do
>+ echo -n "Running $i..."
>+ $i || exit 1
>+ echo 'done.'
>+done
>+
>+echo -n 'Running automake...'
>+automake --add-missing
>+echo 'done.'
>+
>
>
>
