subversion: fix configure missing APR_INT64_T_FMT
configurePhase fails when building Python bindings or subversionClient > configure: error: failed to recognize APR_INT64_T_FMT on this platform Adding "-P" CPPFLAG solves the issue. See also: https://issues.apache.org/jira/browse/SVN-4813
This commit is contained in:
parent
46a869b286
commit
ac63101188
1 changed files with 5 additions and 0 deletions
|
@ -38,6 +38,11 @@ let
|
|||
|
||||
patches = [ ./apr-1.patch ];
|
||||
|
||||
# We are hitting the following issue even with APR 1.6.x
|
||||
# -> https://issues.apache.org/jira/browse/SVN-4813
|
||||
# "-P" CPPFLAG is needed to build Python bindings and subversionClient
|
||||
CPPFLAGS = [ "-P" ];
|
||||
|
||||
configureFlags = [
|
||||
(stdenv.lib.withFeature bdbSupport "berkeley-db")
|
||||
(stdenv.lib.withFeatureAs httpServer "apxs" "${apacheHttpd.dev}/bin/apxs")
|
||||
|
|
Loading…
Reference in a new issue