Mercurial > hg > libxtract
changeset 159:71870680f7c1
Provide relative include path for libxtract.h for compatibility with non-autotools builds
author | Jamie Bullock <jamie@jamiebullock.com> |
---|---|
date | Wed, 24 Apr 2013 15:10:51 +0100 |
parents | 069b2f719dd4 |
children | f7d0b6607193 |
files | src/delta.c src/descriptors.c src/fini.c src/helper.c src/init.c src/libxtract.c src/scalar.c src/vector.c |
diffstat | 8 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/delta.c Fri Mar 15 05:46:57 2013 -0700 +++ b/src/delta.c Wed Apr 24 15:10:51 2013 +0100 @@ -25,7 +25,7 @@ #include <math.h> -#include "xtract/libxtract.h" +#include "../xtract/libxtract.h" int xtract_flux(const double *data, const int N, const void *argv , double *result) {
--- a/src/descriptors.c Fri Mar 15 05:46:57 2013 -0700 +++ b/src/descriptors.c Wed Apr 24 15:10:51 2013 +0100 @@ -21,7 +21,7 @@ * */ -#include "xtract/libxtract.h" +#include "../xtract/libxtract.h" #include "xtract_macros_private.h" #include <stdlib.h> #include <string.h>
--- a/src/fini.c Fri Mar 15 05:46:57 2013 -0700 +++ b/src/fini.c Wed Apr 24 15:10:51 2013 +0100 @@ -23,7 +23,7 @@ /* fini.c: Contains library destructor routine */ -#include "xtract/libxtract.h" +#include "../xtract/libxtract.h" #ifdef __GNUC__ __attribute__((destructor)) void fini()
--- a/src/helper.c Fri Mar 15 05:46:57 2013 -0700 +++ b/src/helper.c Wed Apr 24 15:10:51 2013 +0100 @@ -25,7 +25,7 @@ #include <stdio.h> -#include "xtract/libxtract.h" +#include "../xtract/libxtract.h" #ifdef WORDS_BIGENDIAN #define INDEX 0
--- a/src/init.c Fri Mar 15 05:46:57 2013 -0700 +++ b/src/init.c Wed Apr 24 15:10:51 2013 +0100 @@ -33,7 +33,7 @@ #include "fft.h" -#include "xtract/libxtract.h" +#include "../xtract/libxtract.h" #include "xtract_window_private.h" #define DEFINE_GLOBALS #include "xtract_globals_private.h"
--- a/src/libxtract.c Fri Mar 15 05:46:57 2013 -0700 +++ b/src/libxtract.c Wed Apr 24 15:10:51 2013 +0100 @@ -21,7 +21,7 @@ * */ -#include "xtract/libxtract.h" +#include "../xtract/libxtract.h" #define XTRACT_H int(*xtract[])(const double *, const int, const void *, double *) =
--- a/src/scalar.c Fri Mar 15 05:46:57 2013 -0700 +++ b/src/scalar.c Wed Apr 24 15:10:51 2013 +0100 @@ -28,8 +28,8 @@ #include <stdio.h> #include <math.h> -#include "xtract/libxtract.h" -#include "xtract/xtract_helper.h" +#include "../xtract/libxtract.h" +#include "../xtract/xtract_helper.h" #include "xtract_macros_private.h" int xtract_mean(const double *data, const int N, const void *argv, double *result)