UCBerkeleySETI / rawspec

6 stars 7 forks source link

Correct references to HDF5 include files #48

Closed texadactyl closed 2 years ago

texadactyl commented 2 years ago

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.

texadactyl commented 2 years ago

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