Re: [OMPI devel] Patch to fix cross-compile failure

2007-06-11 Thread Brian Barrett
Argonne used AC_TRY_RUN instead of AC_TRY_COMPILE (I believe) because there are some places where aio functions behaved badly (returned ENOTIMPL or something). I was going to make it call AC_TRY_RUN if we weren't cross-compiling and AC_TRY_COMPILE if we were. I'll commit something this ev

Re: [OMPI devel] Patch to fix cross-compile failure

2007-06-11 Thread Jeff Squyres
Paul -- Excellent; many thanks! Brian: this patch looks good to me, but I defer to the unOfficial OMPI ROMIO Maintainer (uOORM)... On Jun 8, 2007, at 3:33 PM, Paul Henning wrote: I've attached a patch relative to the revision 14962 version of ompi/mca/io/romio/romio/configure.in

[OMPI devel] Patch to fix cross-compile failure

2007-06-08 Thread Paul Henning
I've attached a patch relative to the revision 14962 version of ompi/mca/io/romio/romio/configure.in that fixes configuration errors when doing a cross-compile. It simply changes some tests for the number of parameters to aio_suspend and aio_write from AC_TRY_RUN to AC_TRY_COMPILE.