Actions

icon Post
text/html Subscribe
text/html Unsubscribe

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[patch] fix for MPI type define


  • To: VSIPL++ Developers List <vsipl++@xxxxxxxxxxxxxxxx>
  • Subject: [patch] fix for MPI type define
  • From: Don McCoy <don@xxxxxxxxxxxxxxxx>
  • Date: Wed, 20 Jun 2007 13:18:04 -0600

This patch corrects a minor typo related to the location of the mpi.h header file.

Ok to commit?

--
Don McCoy
don (at) CodeSourcery
(888) 776-0262 / (650) 331-3385, x712

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 174589)
+++ ChangeLog	(working copy)
@@ -1,3 +1,8 @@
+2007-06-20  Don McCoy  <don@xxxxxxxxxxxxxxxx>
+
+	* src/vsip/core/mpi/services.hpp: Fix typo for systems having
+	  their MPI header files in the mpi/ subdirectory.
+
 2007-06-18  Jules Bergmann  <jules@xxxxxxxxxxxxxxxx>
 
 	* src/vsip/core/expr/scalar_block.hpp (Scalar_block_base): Add
Index: src/vsip/core/mpi/services.hpp
===================================================================
--- src/vsip/core/mpi/services.hpp	(revision 174589)
+++ src/vsip/core/mpi/services.hpp	(working copy)
@@ -31,7 +31,7 @@
 #include <vsip/core/config.hpp>
 #if VSIP_IMPL_MPI_H_TYPE == 1
 #  include <mpi.h>
-#elif VSIP_IMPL_MPI_H_TYPE == 1
+#elif VSIP_IMPL_MPI_H_TYPE == 2
 #  include <mpi/mpi.h>
 #endif
 #include <vsip/support.hpp>