~pythoneers/ubuntu/lucid/subversion/ltsppa

« back to all changes in this revision

Viewing changes to subversion/bindings/swig/include/svn_containers.swg

  • Committer: Max Bowsher
  • Date: 2009-11-17 03:07:29 UTC
  • mfrom: (0.3.4 sid)
  • Revision ID: maxb@f2s.com-20091117030729-l4vnv5evgeknvi8l
* Merge from debian unstable (LP: #483953), remaining changes:
  - Create pot file on build.
  - Build a python-subversion-dbg package.
  - (Build-)depend on default-jre-headless/-jdk.
  - Do not apply java-build patch.
  - Don't build for python2.4, not in main.
  - debian/rules: Manually create the doxygen output directory, otherwise
    we get weird build failures when running parallel builds.
  - Disable the serf backend because serf is in universe.

Show diffs side-by-side

added added

removed removed

Lines of Context:
667
667
/* -----------------------------------------------------------------------
668
668
   Input of apr_array_header_t * <svn_opt_revision_range_t *>
669
669
*/
 
670
#ifdef SWIGPYTHON
 
671
%typemap(in) apr_array_header_t *REVISION_RANGE_LIST {
 
672
  $1 = (apr_array_header_t *) svn_swig_py_struct_ptr_list_to_array($input,
 
673
    $descriptor(svn_opt_revision_range_t *), _global_pool);
 
674
  if (PyErr_Occurred()) {
 
675
    SWIG_fail;
 
676
  }
 
677
}
 
678
#endif
 
679
 
670
680
#ifdef SWIGRUBY
671
681
%typemap(in) apr_array_header_t *REVISION_RANGE_LIST {
672
682
  $1 = svn_swig_rb_array_to_apr_array_revision_range($input, _global_pool);