UCBerkeleySETI/rawspec

Correct references to HDF5 include files

texadactyl opened this issue · 1 comments

To date, fbhf_defs.h and rawspec.c use directory-specific include references:

#include <hdf5/serial/hdf5.h>
#include <hdf5/serial/H5pubconf.h>
#include <hdf5/serial/H5DSpublic.h>

These will be the corrected include statements:

#include "hdf5.h"
#include "H5pubconf.h"
#include "H5DSpublic.h"

The Makefile will be amended to point to specific directory paths as needed for compilation.

Also, rawspec.c was already including fbh5_defs.h so there was no need to include H5DSpublic.h on its own.