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

include the configuration header in all public headers

Cédric Augonnet лет назад: 16
Родитель
Сommit
be96bbdccc
4 измененных файлов с 5 добавлено и 0 удалено
  1. 2 0
      include/starpu-data-filters.h
  2. 1 0
      include/starpu-data.h
  3. 1 0
      include/starpu-mutex.h
  4. 1 0
      include/starpu-util.h

+ 2 - 0
include/starpu-data-filters.h

@@ -17,6 +17,8 @@
 #ifndef __STARPU_DATA_FILTERS_H__
 #define __STARPU_DATA_FILTERS_H__
 
+#include <starpu_config.h>
+
 struct starpu_data_state_t;
 
 typedef struct starpu_filter_t {

+ 1 - 0
include/starpu-data.h

@@ -17,6 +17,7 @@
 #ifndef __STARPU_DATA_H__
 #define __STARPU_DATA_H__
 
+#include <starpu_config.h>
 #include <starpu-data-interfaces.h>
 #include <starpu-data-filters.h>
 

+ 1 - 0
include/starpu-mutex.h

@@ -17,6 +17,7 @@
 #ifndef __STARPU_MUTEX_H__
 #define __STARPU_MUTEX_H__
 
+#include <starpu_config.h>
 #include <stdint.h>
 
 typedef struct starpu_mutex_t {

+ 1 - 0
include/starpu-util.h

@@ -21,6 +21,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
+#include <starpu_config.h>
 
 #define STARPU_MIN(a,b)	((a)<(b)?(a):(b))
 #define STARPU_MAX(a,b)	((a)<(b)?(b):(a))