subversionClient: fix build with gcc5

fixes #15483
This commit is contained in:
Alexander Ried 2016-05-20 14:38:14 +02:00
parent a021b6a617
commit 9e073bd110

View File

@ -37,6 +37,10 @@ let
patches = [ ./apr-1.patch ];
# SVN build seems broken on gcc5:
# https://gcc.gnu.org/gcc-5/porting_to.html
CPPFLAGS = "-P";
configureFlags = ''
${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
${if httpServer then "--with-apxs=${apacheHttpd}/bin/apxs" else "--without-apxs"}