forked from mirrors/nixpkgs
subversion: enable Java bindings only on those platforms that support a JDK
svn path=/nixpkgs/trunk/; revision=17599
This commit is contained in:
parent
83aa130427
commit
c16af1a77c
|
@ -7511,7 +7511,7 @@ let
|
||||||
sslSupport = getConfig ["subversion" "sslSupport"] true;
|
sslSupport = getConfig ["subversion" "sslSupport"] true;
|
||||||
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
|
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
|
||||||
perlBindings = getConfig ["subversion" "perlBindings"] false;
|
perlBindings = getConfig ["subversion" "perlBindings"] false;
|
||||||
javahlBindings = getConfig ["subversion" "javahlBindings"] false;
|
javahlBindings = supportsJDK && getConfig ["subversion" "javahlBindings"] false;
|
||||||
compressionSupport = getConfig ["subversion" "compressionSupport"] true;
|
compressionSupport = getConfig ["subversion" "compressionSupport"] true;
|
||||||
httpd = pkgsOverriden.apacheHttpd;
|
httpd = pkgsOverriden.apacheHttpd;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue