Re: [PATCH] Don't always skip XSI tests

2010-07-26 Thread Charles Wilson
On 7/26/2010 10:44 AM, Gary V. Vaughan wrote: > Thanks for the catch, and please push! Done. -- Chuck

Re: [PATCH] Don't always skip XSI tests

2010-07-26 Thread Gary V. Vaughan
Hi Chuck, On 26 Jul 2010, at 11:03, Charles Wilson wrote: > tests/getopt-m4sh.at: Use new signature as implemented by > de8a0992b21b76a13c302cf48588ad5f6042595c, when determining > whether to test Extended-shell functions. > --- > tests/getopt-m4sh.at |6 +++--- > 1 files changed, 3 insertions(

Re: [REBASED PATCH 0/9] Paolo's sysroot patches, rebased plus some fixes

2010-07-26 Thread Paolo Bonzini
On 07/26/2010 01:57 PM, Charles Wilson wrote: These are rebased versions of Paolo's sysroot patches, rebased to 0e01d00c70fe1eba2b746a6bb52e3c9277a4f1ef (Sun Jul 18 17:17:15 2010 +0200) As it happens, Paolo's old 3/8 'provide shell functions to configure.patch' didn't apply very well at all, gi

[REBASED PATCH 9/9] Configure script should not use libtool-only shell functions

2010-07-26 Thread Charles Wilson
--- libltdl/m4/libtool.m4 | 33 + 1 files changed, 29 insertions(+), 4 deletions(-) This patch is needed so that patch 8/9 (Paolo's 8/8) will work. With the recent change to how XSI override functions are replaced, you can't rely on those functions being present

[REBASED PATCH 8/9] emit sysrooted paths when installing .la files

2010-07-26 Thread Charles Wilson
Signed-off-by: Charles Wilson <...> --- libltdl/config/ltmain.m4sh | 44 +--- libltdl/m4/libtool.m4 | 15 +++ 2 files changed, 48 insertions(+), 11 deletions(-) diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh index

[REBASED PATCH 7/9] handle sysrooted paths when reading dependencies to la files

2010-07-26 Thread Charles Wilson
Signed-off-by: Charles Wilson <...> --- libltdl/config/ltmain.m4sh | 18 ++ tests/sysroot.at |6 ++ 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh index e0a37ee..4aa8b45 100644 --- a/libltd

[REBASED PATCH 6/9] teach libtool -L= and -R=

2010-07-26 Thread Charles Wilson
Signed-off-by: Charles Wilson <...> --- libltdl/config/ltmain.m4sh | 83 1 files changed, 61 insertions(+), 22 deletions(-) diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh index 4f373db..e0a37ee 100644 --- a/libltdl/config/ltmain

[REBASED PATCH 5/9] Fix issue with GROW diversion in testsuite

2010-07-26 Thread Charles Wilson
--- tests/sysroot.at |9 - 1 files changed, 8 insertions(+), 1 deletions(-) This patch is necessary to fixup 4/9 (which was Paolo's 5/8). Apparently newer autoconf implements things in such a way that using AS_DIRNAME inside of AT_CHECK causes a problem with m4: cannot expand diversio

[REBASED PATCH 4/9] add a basic sysroot test

2010-07-26 Thread Charles Wilson
Signed-off-by: Charles Wilson <...> --- Makefile.am |3 +- tests/sysroot.at | 188 ++ 2 files changed, 190 insertions(+), 1 deletions(-) create mode 100644 tests/sysroot.at diff --git a/Makefile.am b/Makefile.am index ef3c984..c2928a5

[REBASED PATCH 3/9] Add --with-sysroot

2010-07-26 Thread Charles Wilson
The first baby step. Support the option, and replace it properly in the libtool script. Signed-off-by: Charles Wilson <...> --- libltdl/m4/libtool.m4 | 50 + 1 files changed, 50 insertions(+), 0 deletions(-) diff --git a/libltdl/m4/libtool.m4 b/

[REBASED PATCH 2/9] fix buglet

2010-07-26 Thread Charles Wilson
Signed-off-by: Charles Wilson <...> --- libltdl/m4/libtool.m4 |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libltdl/m4/libtool.m4 b/libltdl/m4/libtool.m4 index 47d2558..f61be28 100644 --- a/libltdl/m4/libtool.m4 +++ b/libltdl/m4/libtool.m4 @@ -6724,7 +6724,7 @@ if AC_

[REBASED PATCH 1/9] handle sysroot flags

2010-07-26 Thread Charles Wilson
Signed-off-by: Charles Wilson <...> --- libltdl/config/ltmain.m4sh |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libltdl/config/ltmain.m4sh b/libltdl/config/ltmain.m4sh index 897a5e8..4f373db 100644 --- a/libltdl/config/ltmain.m4sh +++ b/libltdl/config/ltmain.m4sh @@

[REBASED PATCH 0/9] Paolo's sysroot patches, rebased plus some fixes

2010-07-26 Thread Charles Wilson
These are rebased versions of Paolo's sysroot patches, rebased to 0e01d00c70fe1eba2b746a6bb52e3c9277a4f1ef (Sun Jul 18 17:17:15 2010 +0200) As it happens, Paolo's old 3/8 'provide shell functions to configure.patch' didn't apply very well at all, given the recent changes. So, I took the brute fo