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
No known key found for this signature in database
GPG Key ID: 0FBC2E3BA99DD60E

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 = [ ];