From 135e0ce4b8b12d3303bb0d6da585b6168bd2ad89 Mon Sep 17 00:00:00 2001 From: marqh Date: Fri, 14 Oct 2016 14:06:36 +0000 Subject: [PATCH 1/6] enable threadsafe and production --- recipe/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipe/build.sh b/recipe/build.sh index 1eb73397..92ad8048 100755 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -23,7 +23,9 @@ export LIBRARY_PATH="${PREFIX}/lib" --enable-cxx \ --enable-fortran \ --enable-fortran2003 \ - --with-default-plugindir="${PREFIX}/lib/hdf5/plugin" + --with-default-plugindir="${PREFIX}/lib/hdf5/plugin" \ + --enable-threadsafe \ + --enable-production make -j "${CPU_COUNT}" make check From 0c7b8d9f1eb6d8590abaa0614a1a95b9bafa8671 Mon Sep 17 00:00:00 2001 From: marqh Date: Fri, 14 Oct 2016 14:31:03 +0000 Subject: [PATCH 2/6] build nomber --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 0e6e226d..d3dec745 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -20,7 +20,7 @@ source: - test_Makefile.in.patch build: - number: 6 + number: 7 features: - vc9 # [win and py27] - vc10 # [win and py34] From b941735bcad472ca7e8abc99ddbe30a8cd6662dc Mon Sep 17 00:00:00 2001 From: marqh Date: Fri, 14 Oct 2016 14:37:00 +0000 Subject: [PATCH 3/6] disable-hl --- recipe/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/recipe/build.sh b/recipe/build.sh index 92ad8048..36f02828 100755 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -25,6 +25,7 @@ export LIBRARY_PATH="${PREFIX}/lib" --enable-fortran2003 \ --with-default-plugindir="${PREFIX}/lib/hdf5/plugin" \ --enable-threadsafe \ + --disable-hl \ --enable-production make -j "${CPU_COUNT}" From 4aa3dcd963355495270d832cd158cd1c267fb1db Mon Sep 17 00:00:00 2001 From: marqh Date: Mon, 17 Oct 2016 10:30:47 +0000 Subject: [PATCH 4/6] enable-unsupported --- recipe/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipe/build.sh b/recipe/build.sh index 36f02828..04f6e4de 100755 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -26,7 +26,8 @@ export LIBRARY_PATH="${PREFIX}/lib" --with-default-plugindir="${PREFIX}/lib/hdf5/plugin" \ --enable-threadsafe \ --disable-hl \ - --enable-production + --enable-production \ + --enable-unsupported make -j "${CPU_COUNT}" make check From 082eadd307fd8afc034adbcbc9794a0c748a7bd6 Mon Sep 17 00:00:00 2001 From: marqh Date: Tue, 18 Oct 2016 11:43:00 +0000 Subject: [PATCH 5/6] disable-static, with-ssl --- recipe/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipe/build.sh b/recipe/build.sh index 04f6e4de..da47bc32 100755 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -27,7 +27,9 @@ export LIBRARY_PATH="${PREFIX}/lib" --enable-threadsafe \ --disable-hl \ --enable-production \ - --enable-unsupported + --enable-unsupported \ + --disable-static \ + --with-ssl make -j "${CPU_COUNT}" make check From 77c3ce8d90fe28a30dadad21456a44c38fae6e6f Mon Sep 17 00:00:00 2001 From: marqh Date: Fri, 21 Oct 2016 13:27:03 +0000 Subject: [PATCH 6/6] remove disable-hl --- recipe/build.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/build.sh b/recipe/build.sh index da47bc32..d15f9467 100755 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -25,7 +25,6 @@ export LIBRARY_PATH="${PREFIX}/lib" --enable-fortran2003 \ --with-default-plugindir="${PREFIX}/lib/hdf5/plugin" \ --enable-threadsafe \ - --disable-hl \ --enable-production \ --enable-unsupported \ --disable-static \