diff options
Diffstat (limited to 'xtract')
-rw-r--r-- | xtract/libxtract.h | 2 | ||||
-rw-r--r-- | xtract/xtract_macros.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/xtract/libxtract.h b/xtract/libxtract.h index 235353e..5931351 100644 --- a/xtract/libxtract.h +++ b/xtract/libxtract.h @@ -53,7 +53,7 @@ extern "C" { * @{ */ -#define XTRACT_FEATURES 42 +#define XTRACT_FEATURES 43 #define LOG_LIMIT 10e-10 #define VERY_BIG_NUMBER 2e10 diff --git a/xtract/xtract_macros.h b/xtract/xtract_macros.h index 7cce4c0..534e1af 100644 --- a/xtract/xtract_macros.h +++ b/xtract/xtract_macros.h @@ -35,6 +35,7 @@ extern "C" { #define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MAX(a, b) ((a) > (b) ? (a) : (b)) #define NOT_IMPLEMENTED printf("Feature not implemented yet.\n") +#define NEEDS_FFTW printf("LibXtract must be compiled with fftw support to use this function.\n") #ifdef __cplusplus } |