* Don't show unreadable copyfrom paths in 'svn log -v' (r1899227) * Fix -r option documentation for some svnadmin subcommands (r1896877) * Fix error message encoding when system() call fails (r1887641, r1890013) * Fix assertion failure in conflict resolver (r1892470, -471, -541) * Support multiple working copy formats (1.8-onward, 1.15) (issue #????) * Fix use-after-free of object-pools when running in httpd (issue #4880) * Add test coverage for CVE-2020-17525 (r1883838 et al) * Fix «make davautocheck» failure due to unbuilt dependency (r1891908) * Follow up to r1866587, r1866588: Unbreak a msgid. (r1887704) * swig-py: Fix double-free with cyclic garbage collector (r1889487) * swig-py: Skip some tests on Python2 if encoding is 'utf-8' (r1885199) * swig-py: Fix dependency of make copy-swig-py target (r1886708) * Document how the port number is passed to custom tunnels (r1889629) * tests: Include additional information in an error message (r1897449) * Fix an error message when running make davautocheck (r1892121) * Use the APR-1.4+ API for flushing file contents to disk (r1883355) * JavaHL: Fix RequestChannel_nativeRead_AfterException failure (r1898633) - split testsuite into _multibuild flavor to speedup dependent packages OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm:svn/subversion?expand=0&rev=352
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
Index: subversion-1.14.2/Makefile.in
|
|
===================================================================
|
|
--- subversion-1.14.2.orig/Makefile.in
|
|
+++ subversion-1.14.2/Makefile.in
|
|
@@ -898,7 +898,7 @@ swig-pl: autogen-swig-pl $(SWIG_PL_DIR)/
|
|
fi; \
|
|
done; \
|
|
fi
|
|
- cd $(SWIG_PL_DIR)/native; $(MAKE) OPTIMIZE="" OTHERLDFLAGS="$(SWIG_LDFLAGS)"
|
|
+ cd $(SWIG_PL_DIR)/native; $(MAKE)
|
|
|
|
check-swig-pl: swig-pl swig-pl-lib
|
|
cd $(SWIG_PL_DIR)/native; $(MAKE) test
|
|
Index: subversion-1.14.2/subversion/bindings/swig/perl/native/Makefile.PL.in
|
|
===================================================================
|
|
--- subversion-1.14.2.orig/subversion/bindings/swig/perl/native/Makefile.PL.in
|
|
+++ subversion-1.14.2/subversion/bindings/swig/perl/native/Makefile.PL.in
|
|
@@ -85,7 +85,7 @@ my %config = (
|
|
" -I$svnlib_builddir",
|
|
" -I$swig_srcdir -g"),
|
|
OBJECT => q/$(O_FILES)/,
|
|
- LIBS => [join(' ', $apr_ldflags,
|
|
+ LIBS => [join(' ', $apr_ldflags, '-lpthread -lapr-1 -lperl',
|
|
(map {"-L$_"} @ldpaths),
|
|
@ldmodules, '-lsvn_swig_perl-1',
|
|
`$swig -perl -ldflags`)],
|