Stefan Sperling <subversion@elego.de>


Patch
r25707, r25578

r25707 | vgeorgescu | 2007-07-10 05:49:07 -0500 (Tue, 10 Jul 2007)

Fix issue #2429: "svn export" doesn't export externals from working copies.

Patch by: Stefan Sperling <subversion@elego.de>
          me

* subversion/libsvn_client/export.c
  (copy_versioned_files): Add an 'ignore_externals' argument, and copy
   externals to the destination if it is FALSE.
  (svn_client_export4): Update call to copy_versioned_files().

* subversion/tests/cmdline/externals_tests.py
  (export_wc_with_externals): New test.
  (test_list): Add export_wc_with_externals().


r25578 | kameshj | 2007-06-29 08:25:58 -0500 (Fri, 29 Jun 2007)

Fix compilation failure if apr was compiled without thread support.

* subversion/libsvn_subr/atomic.c
  (svn_atomic__init_once):
* subversion/libsvn_ra_svn/cyrus_auth.c
  ():
  (svn_ra_svn__sasl_common_init):
  Check APR_HAS_THREADS with #if and not #ifdef.
  APR_HAS_THREADS is _always_ defined, but 0 if thread support is disabled.

Patch by: Stefan Sperling <stsp@elego.de>