|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-02-10 20:45 UTC] scottmac@php.net
[2008-03-28 11:24 UTC] scottmac@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 23:00:01 2025 UTC |
Description: ------------ The svn.la module requires several of the libsvn_*-1 libraries, not just svn_client. On Cygwin, building svn-0.3 fails due to undefined symbols during linking. Patch below. Reproduce code: --------------- --- origsrc/svn-0.3/config.m4 2008-02-09 08:39:10.000000000 -0600 +++ src/svn-0.3/config.m4 2008-02-09 22:53:41.812500000 -0600 @@ -21,7 +21,7 @@ if test -d $i/lib64 ; then PHP_SVN_LDFLAGS="-L$i/lib64" fi - PHP_SVN_LDFLAGS="-lsvn_client-1" + PHP_SVN_LDFLAGS="-lsvn_client-1 -lsvn_fs-1 -lsvn_repos-1 -lsvn_subr-1" break; fi done