diff options
Diffstat (limited to 'xtract')
-rw-r--r-- | xtract/Makefile.am | 8 | ||||
-rw-r--r-- | xtract/libxtract.h | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/xtract/Makefile.am b/xtract/Makefile.am index b29e60d..0dd9942 100644 --- a/xtract/Makefile.am +++ b/xtract/Makefile.am @@ -1,5 +1,11 @@ libxtractdir = $(includedir)/xtract +if BUILD_VECTOR +XTRACT_VECTOR = xtract_vector.h +else +XTRACT_VECTOR = +endif + libxtract_HEADERS = libxtract.h xtract_macros.h xtract_types.h xtract_delta.h \ - xtract_scalar.h xtract_vector.h + xtract_scalar.h $(XTRACT_VECTOR) diff --git a/xtract/libxtract.h b/xtract/libxtract.h index 81f261f..6b90da3 100644 --- a/xtract/libxtract.h +++ b/xtract/libxtract.h @@ -67,7 +67,7 @@ enum features_ { AVERAGE_DEVIATION, SKEWNESS, KURTOSIS, - CENTROID, + CENTROID, IRREGULARITY_K, IRREGULARITY_J, TRISTIMULUS_1, @@ -125,7 +125,7 @@ enum return_codes_ { MALLOC_FAILED, BAD_ARGV, BAD_VECTOR_SIZE, - NO_RESULT + NO_RESULT }; /** |