FWIW: we had Siegmar try that and it didn't solve the problem. Paul?

On Jul 31, 2014, at 8:28 PM, svn-commit-mai...@open-mpi.org wrote:

> Author: bosilca (George Bosilca)
> Date: 2014-07-31 23:28:23 EDT (Thu, 31 Jul 2014)
> New Revision: 32388
> URL: https://svn.open-mpi.org/trac/ompi/changeset/32388
> 
> Log:
> Missing alloca.h. Thanks Paul for catching this.
> 
> Text files modified: 
>   trunk/ompi/mca/pml/ob1/pml_ob1_irecv.c |     3 +++                          
>            
>   trunk/ompi/mca/pml/ob1/pml_ob1_isend.c |     3 +++                          
>            
>   2 files changed, 6 insertions(+), 0 deletions(-)
> 
> Modified: trunk/ompi/mca/pml/ob1/pml_ob1_irecv.c
> ==============================================================================
> --- trunk/ompi/mca/pml/ob1/pml_ob1_irecv.c    Thu Jul 31 21:00:42 2014        
> (r32387)
> +++ trunk/ompi/mca/pml/ob1/pml_ob1_irecv.c    2014-07-31 23:28:23 EDT (Thu, 
> 31 Jul 2014)      (r32388)
> @@ -28,6 +28,9 @@
> #include "pml_ob1_recvfrag.h"
> #include "ompi/peruse/peruse-internal.h"
> #include "ompi/message/message.h"
> +#if HAVE_ALLOCA_H
> +#include <alloca.h>
> +#endif  /* HAVE_ALLOCA_H */
> 
> int mca_pml_ob1_irecv_init(void *addr,
>                            size_t count,
> 
> Modified: trunk/ompi/mca/pml/ob1/pml_ob1_isend.c
> ==============================================================================
> --- trunk/ompi/mca/pml/ob1/pml_ob1_isend.c    Thu Jul 31 21:00:42 2014        
> (r32387)
> +++ trunk/ompi/mca/pml/ob1/pml_ob1_isend.c    2014-07-31 23:28:23 EDT (Thu, 
> 31 Jul 2014)      (r32388)
> @@ -26,6 +26,9 @@
> #include "pml_ob1_sendreq.h"
> #include "pml_ob1_recvreq.h"
> #include "ompi/peruse/peruse-internal.h"
> +#if HAVE_ALLOCA_H
> +#include <alloca.h>
> +#endif  /* HAVE_ALLOCA_H */
> 
> int mca_pml_ob1_isend_init(void *buf,
>                            size_t count,
> _______________________________________________
> svn mailing list
> s...@open-mpi.org
> http://www.open-mpi.org/mailman/listinfo.cgi/svn

Reply via email to