Browse Source

configure.ac: fix value for STARPU_VERSION

  the value of STARPU_VERSION needs to be tested with a if, e.g

#if STARPU_VERSION >= 1
#include <starpu_deprecated_api.h>
#endif
Nathalie Furmento 13 years ago
parent
commit
dfbbfaca95
1 changed files with 1 additions and 1 deletions
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -67,7 +67,7 @@ if test x$SIZEOF_VOID_P = x4; then
 fi
 
 # Get the version of StarPU that we are installing
-STARPU_VERSION=1.0.0
+STARPU_VERSION=1
 AC_SUBST(STARPU_VERSION)
 AC_DEFINE_UNQUOTED([STARPU_VERSION], [$STARPU_VERSION], [Version of StarPU])