Просмотр исходного кода

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
Родитель
Сommit
dfbbfaca95
1 измененных файлов с 1 добавлено и 1 удалено
  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])