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
|
@ -38,6 +38,11 @@ let
|
||||||
|
|
||||||
patches = [ ./apr-1.patch ];
|
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 = [
|
configureFlags = [
|
||||||
(stdenv.lib.withFeature bdbSupport "berkeley-db")
|
(stdenv.lib.withFeature bdbSupport "berkeley-db")
|
||||||
(stdenv.lib.withFeatureAs httpServer "apxs" "${apacheHttpd.dev}/bin/apxs")
|
(stdenv.lib.withFeatureAs httpServer "apxs" "${apacheHttpd.dev}/bin/apxs")
|
||||||
|
|
Loading…
Reference in New Issue