diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5config.h.in | 12 | ||||
-rw-r--r-- | src/H5public.h | 1 | ||||
-rw-r--r-- | src/Makefile.in | 7 |
3 files changed, 16 insertions, 4 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 88b268d..3bdd638 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -155,6 +155,9 @@ /* Define if you have the <io.h> header file. */ #undef HAVE_IO_H +/* Define if you have the <mfhdf.h> header file. */ +#undef HAVE_MFHDF_H + /* Define if you have the <sys/ioctl.h> header file. */ #undef HAVE_SYS_IOCTL_H @@ -179,9 +182,18 @@ /* Define if you have the coug library (-lcoug). */ #undef HAVE_LIBCOUG +/* Define if you have the df library (-ldf). */ +#undef HAVE_LIBDF + +/* Define if you have the jpeg library (-ljpeg). */ +#undef HAVE_LIBJPEG + /* Define if you have the m library (-lm). */ #undef HAVE_LIBM +/* Define if you have the mfhdf library (-lmfhdf). */ +#undef HAVE_LIBMFHDF + /* Define if you have the mpi library (-lmpi). */ #undef HAVE_LIBMPI diff --git a/src/H5public.h b/src/H5public.h index f72f386..da14914 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -76,7 +76,6 @@ typedef signed long long hssize_t; # elif SIZEOF___INT64==8 typedef unsigned __int64 hsize_t; typedef signed __int64 hssize_t; -typedef signed int ssize_t; # endif #else typedef size_t hsize_t; diff --git a/src/Makefile.in b/src/Makefile.in index b59f610..b9bc18f 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -19,8 +19,9 @@ LIB_SRC=H5.c H5A.c H5AC.c H5B.c H5D.c H5E.c H5F.c H5Farray.c H5Fcore.c \ H5Fstdio.c H5G.c H5Gent.c H5Gnode.c H5Gstab.c H5HG.c H5HL.c H5I.c H5MF.c \ H5MM.c H5O.c H5Oattr.c H5Ocomp.c H5Ocont.c H5Odtype.c H5Oefl.c H5Ofill.c \ H5Olayout.c H5Omtime.c H5Oname.c H5Onull.c H5Osdspace.c H5Oshared.c \ - H5Ostab.c H5P.c H5R.c H5RA.c H5S.c H5Sall.c H5Shyper.c H5Smpio.c H5Snone.c \ - H5Spoint.c H5Sselect.c H5T.c H5Tbit.c H5Tconv.c H5Tinit.c H5TB.c H5V.c H5Z.c + H5Ostab.c H5P.c H5R.c H5RA.c H5S.c H5Sall.c H5Shyper.c H5Smpio.c \ + H5Spoint.c H5Sselect.c H5T.c H5Tbit.c H5Tconv.c H5Tinit.c H5TB.c H5V.c \ + H5Z.c LIB_OBJ=$(LIB_SRC:.c=.o) @@ -43,7 +44,7 @@ PRIVATE_HDR=H5private.h H5Aprivate.h H5Apkg.h H5ACprivate.h H5Bprivate.h \ # Number format detection H5Tinit.c: H5detect - $(RUNTEST) ./H5detect >H5Tinit.c + $(RUNSERIAL) ./H5detect >H5Tinit.c # no $(LIB) in the action below since that's being made now. H5detect: H5detect.o |