|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-12-28 12:14 UTC] mfn at outsch dot org
Description: ------------ Subversion 1.4 is not supported by the Windows binaries. So its impossible to access a working copy generated by Subversion 1.4.2. Perhaps it would be a good idea to compile 2 Versions. One with the old 1.3.2 Source an one with the new one. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 14:00:01 2025 UTC |
I, too, have managed to get it to compile on Windows, so I'm good. I needed this patch to config.w32 to make it work, though (backwards compatible): Index: config.w32 =================================================================== RCS file: /repository/pecl/svn/config.w32,v retrieving revision 1.6 diff -u -r1.6 config.w32 --- config.w32 19 Apr 2006 23:35:01 -0000 1.6 +++ config.w32 13 Nov 2007 21:44:14 -0000 @@ -25,8 +25,10 @@ CHECK_LIB("intl3_svn.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr;" + PHP_SVN) && CHECK_LIB("libdb43.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr;" + PHP_SVN) && CHECK_LIB("libneon.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\neon;" + PHP_SVN) && - CHECK_LIB("libapr.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr;" + PHP_SVN) && - CHECK_LIB("libaprutil.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr-util;" + PHP_SVN) && + (CHECK_LIB("libapr.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr;" + PHP_SVN) || + CHECK_LIB("libapr-1.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr;" + PHP_SVN)) && + (CHECK_LIB("libaprutil.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr-util;" + PHP_SVN) || + CHECK_LIB("libaprutil-1.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr-util;" + PHP_SVN)) && CHECK_LIB("xml.lib", "svn", PHP_PHP_BUILD + "\\lib\\svn\\apr-util;" + PHP_SVN) ) { EXTENSION("svn", "svn.c");