hdf5_1_10: enable cpp support

This commit is contained in:
Stephen Huan
2024-11-26 23:47:46 -08:00
parent 4633a7c723
commit 9896808a25
+3 -1
View File
@@ -2,6 +2,7 @@
, stdenv
, fetchurl
, removeReferencesTo
, cppSupport ? true
, zlibSupport ? true
, zlib
, enableShared ? !stdenv.hostPlatform.isStatic
@@ -28,7 +29,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = optional zlibSupport zlib;
configureFlags = optional enableShared "--enable-shared"
++ optional javaSupport "--enable-java";
++ optional javaSupport "--enable-java"
++ optional cppSupport "--enable-cxx";
patches = [ ];