mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #124569 from thefloweringash/subversion-as
subversion: update libtool to fix build on aarch64-darwin
This commit is contained in:
commit
a48d4bf159
1 changed files with 9 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
, javahlBindings ? false
|
||||
, saslSupport ? false
|
||||
, lib, stdenv, fetchurl, apr, aprutil, zlib, sqlite, openssl, lz4, utf8proc
|
||||
, autoconf, libtool
|
||||
, apacheHttpd ? null, expat, swig ? null, jdk ? null, python3 ? null, py3c ? null, perl ? null
|
||||
, sasl ? null, serf ? null
|
||||
}:
|
||||
|
@ -16,6 +17,8 @@ assert pythonBindings -> swig != null && python3 != null && py3c != null;
|
|||
assert javahlBindings -> jdk != null && perl != null;
|
||||
|
||||
let
|
||||
# Update libtool for macOS 11 support
|
||||
needsAutogen = stdenv.hostPlatform.isDarwin && lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11";
|
||||
|
||||
common = { version, sha256, extraPatches ? [ ] }: stdenv.mkDerivation (rec {
|
||||
inherit version;
|
||||
|
@ -29,6 +32,8 @@ let
|
|||
# Can't do separate $lib and $bin, as libs reference bins
|
||||
outputs = [ "out" "dev" "man" ];
|
||||
|
||||
nativeBuildInputs = lib.optionals needsAutogen [ autoconf libtool python3 ];
|
||||
|
||||
buildInputs = [ zlib apr aprutil sqlite openssl lz4 utf8proc ]
|
||||
++ lib.optional httpSupport serf
|
||||
++ lib.optionals pythonBindings [ python3 py3c ]
|
||||
|
@ -42,6 +47,10 @@ let
|
|||
# "-P" CPPFLAG is needed to build Python bindings and subversionClient
|
||||
CPPFLAGS = [ "-P" ];
|
||||
|
||||
preConfigure = lib.optionalString needsAutogen ''
|
||||
./autogen.sh
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
(lib.withFeature bdbSupport "berkeley-db")
|
||||
(lib.withFeatureAs httpServer "apxs" "${apacheHttpd.dev}/bin/apxs")
|
||||
|
|
Loading…
Reference in a new issue