Re: [PATCH] [mingw] Add cross-compile support to cwrapper

2008-05-31 Thread Roumen Petrov
Charles Wilson wrote: Roumen Petrov wrote: # func_to_host_path arg [SNIP] # ARG is the path (on $build) that should be converted to # the proper representation for $host. The result is stored @@ -2546,11 +2553,28 @@ func_to_host_path () func_to_host_path_result=`echo

FYI: Skip darwin test if fat link fails

2008-05-31 Thread Peter O'Gorman
I just pushed this. Peter -- Peter O'Gorman http://pogma.com From be6f90aa33bfaa28dcaba8cc269ef504a51f6f9a Mon Sep 17 00:00:00 2001 From: Peter O'Gorman [EMAIL PROTECTED] Date: Sat, 31 May 2008 12:12:31 -0500 Subject: [PATCH] Skip darwin test if fat link fails. * tests/darwin.at: Skip if we can

[PATCH] Check for only regular files, not devices

2008-05-31 Thread Stas Maximov
From 350a7ce8fd29a7c225bea2ecb7e2443ee6269ea7 Mon Sep 17 00:00:00 2001 From: Stas Maximov [EMAIL PROTECTED] Date: Sat, 31 May 2008 14:14:31 -0700 Subject: [PATCH] Check for only regular files, not devices * libltdl/config/ltmain.m4sh, functions func_lalib_p () and func_lalib_unsafe_p () should

[PATCH] [mingw] fix cross-compile-with-wine case

2008-05-31 Thread Charles Wilson
* libltdl/config/ltmain.m4sh (func_to_host_path) [host=mingw, build!=mingw|cygwin]: check that winepath stdout is non-empty and exit code is 0, instead of checking stderr. Reported by: Roumen Petrov --- Following the discussion here:

Re: [PATCH] Check for only regular files, not devices

2008-05-31 Thread Charles Wilson
Stas Maximov wrote: +if test -f $1 -a -r $1 exec 50 $1; then I don't think -a is portable... -- Chuck