Re: -sysroot darwin

2007-06-16 Thread Ralf Wildenhues
Hello Peter, * Peter O'Gorman wrote on Wed, Jun 06, 2007 at 07:22:56AM CEST: On Mac OS X it is getting fairly common to configure with -isysroot in CFLAGS (hopefully will become less common again when all systems are fully fat in 10.5), this patch solves the issue that there are no .la

Re: [patch] win32: eliminate wrapper script in main build dir

2007-06-16 Thread Charles Wilson
Noah Misch wrote: Overall, the patch looks suitable. Some minor comments: +func_ltwrapper_executable_p_result=no +if ! func_ltwrapper_script_p $1 ; then The `!' operator is not portable; use `if X; then :; else'. You could instead add a different magic string to executables,

Re: distchecking without FC?

2007-06-16 Thread Ralf Wildenhues
Hi Noah, * Noah Misch wrote on Fri, Jun 15, 2007 at 02:42:04AM CEST: It was possible to generalize the f77demo/fcdemo configure script hacks to make them work with no Fortran compiler at all. Even so, it looked increasingly fragile. Therefore, I took a different approach: list the files

Re: [patch] win32: eliminate wrapper script in main build dir

2007-06-16 Thread Ralf Wildenhues
* Ralf Wildenhues wrote on Sat, Jun 16, 2007 at 12:31:10PM CEST: The new suite fails tests 25 26 32 54 now, which it didn't back on 2007-02-24, which is when I last tested it. I haven't localized it any further yet, so it may be completely independent of this patch. Oh, I forgot to attach

Re: [patch] win32: eliminate wrapper script in main build dir

2007-06-16 Thread Charles Wilson
Ralf Wildenhues wrote: Let's keep as much code once as possible, and kill some superfluous quotes: func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac grep $magic $1$func_ltwrapper_exec_suffix /dev/null }