Closed texadactyl closed 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.
Also, rawspec.c was already including fbh5_defs.h so there was no need to include H5DSpublic.h on its own.
To date, fbhf_defs.h and rawspec.c use directory-specific include references:
These will be the corrected include statements:
The Makefile will be amended to point to specific directory paths as needed for compilation.