Skip to content

Commit

Permalink
update version number to be correct for release (#39)
Browse files Browse the repository at this point in the history
- Fix compile-time version number
- Remove make.vars.inc
  • Loading branch information
markcmiller86 authored Jun 29, 2019
1 parent 5dc68bb commit 5d9a995
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/H5Zzfp_plugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
/* Filter ID number registered with The HDF Group */
#define H5Z_FILTER_ZFP 32013

#define H5Z_FILTER_ZFP_VERSION_MAJOR 0
#define H5Z_FILTER_ZFP_VERSION_MINOR 9
#define H5Z_FILTER_ZFP_VERSION_PATCH 0
#define H5Z_FILTER_ZFP_VERSION_MAJOR 1
#define H5Z_FILTER_ZFP_VERSION_MINOR 0
#define H5Z_FILTER_ZFP_VERSION_PATCH 1

#define H5Z_ZFP_MODE_RATE 1
#define H5Z_ZFP_MODE_PRECISION 2
Expand Down
6 changes: 3 additions & 3 deletions src/H5Zzfp_props_f.F90
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ MODULE H5Zzfp_props_f

INTEGER :: H5Z_FILTER_ZFP=32013

INTEGER :: H5Z_FILTER_ZFP_VERSION_MAJOR=0
INTEGER :: H5Z_FILTER_ZFP_VERSION_MINOR=9
INTEGER :: H5Z_FILTER_ZFP_VERSION_PATCH=0
INTEGER :: H5Z_FILTER_ZFP_VERSION_MAJOR=1
INTEGER :: H5Z_FILTER_ZFP_VERSION_MINOR=0
INTEGER :: H5Z_FILTER_ZFP_VERSION_PATCH=1

INTEGER(C_SIZE_T), PARAMETER :: H5Z_ZFP_CD_NELMTS_MEM=6 ! used in public API to filter
INTEGER(C_SIZE_T), PARAMETER :: H5Z_ZFP_CD_NELMTS_MAX=6 ! max, over all versions, used in dataset header
Expand Down
1 change: 0 additions & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ all: lib plugin

install: all
$(INSTALL) -d $(DESTDIR)$(PREFIX)/{plugin,include,lib}
echo $(MAKEVARS) > $(DESTDIR)$(PREFIX)/include/make.vars.inc
$(INSTALL) plugin/libh5zzfp.$(SOEXT) $(DESTDIR)$(PREFIX)/plugin
$(INSTALL) libh5zzfp.a $(DESTDIR)$(PREFIX)/lib
$(INSTALL) -m 644 H5Zzfp.h H5Zzfp_lib.h H5Zzfp_plugin.h H5Zzfp_props.h $(DESTDIR)$(PREFIX)/include
Expand Down

0 comments on commit 5d9a995

Please sign in to comment.