~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/include/svn_opt.h

  • Committer: Package Import Robot
  • Author(s): James McCoy, Peter Samuelson, James McCoy
  • Date: 2014-01-12 19:48:33 UTC
  • mfrom: (0.2.10)
  • Revision ID: package-import@ubuntu.com-20140112194833-w3axfwksn296jn5x
Tags: 1.8.5-1
[ Peter Samuelson ]
* New upstream release.  (Closes: #725787) Rediff patches:
  - Remove apr-abi1 (applied upstream), rename apr-abi2 to apr-abi
  - Remove loosen-sqlite-version-check (shouldn't be needed)
  - Remove java-osgi-metadata (applied upstream)
  - svnmucc prompts for a changelog if none is provided. (Closes: #507430)
  - Remove fix-bdb-version-detection, upstream uses "apu-config --dbm-libs"
  - Remove ruby-test-wc (applied upstream)
  - Fix “svn diff -r N file” when file has svn:mime-type set.
    (Closes: #734163)
  - Support specifying an encoding for mod_dav_svn's environment in which
    hooks are run.  (Closes: #601544)
  - Fix ordering of “svnadmin dump” paths with certain APR versions.
    (Closes: #687291)
  - Provide a better error message when authentication fails with an
    svn+ssh:// URL.  (Closes: #273874)
  - Updated Polish translations.  (Closes: #690815)

[ James McCoy ]
* Remove all traces of libneon, replaced by libserf.
* patches/sqlite_3.8.x_workaround: Upstream fix for wc-queries-test test
  failurse.
* Run configure with --with-apache-libexecdir, which allows removing part of
  patches/rpath.
* Re-enable auth-test as upstream has fixed the problem of picking up
  libraries from the environment rather than the build tree.
  (Closes: #654172)
* Point LD_LIBRARY_PATH at the built auth libraries when running the svn
  command during the build.  (Closes: #678224)
* Add a NEWS entry describing how to configure mod_dav_svn to understand
  UTF-8.  (Closes: #566148)
* Remove ancient transitional package, libsvn-ruby.
* Enable compatibility with Sqlite3 versions back to Wheezy.
* Enable hardening flags.  (Closes: #734918)
* patches/build-fixes: Enable verbose build logs.
* Build against the default ruby version.  (Closes: #722393)

Show diffs side-by-side

added added

removed removed

Lines of Context:
680
680
 * Else, if @a print_version is TRUE, then print version info, in
681
681
 * brief form if @a quiet is also TRUE; if @a quiet is FALSE, then if
682
682
 * @a version_footer is non-NULL, print it following the version
683
 
 * information.
 
683
 * information. If @a verbose is TRUE, also print information about
 
684
 * the running system and loaded shared libraries, where available.
684
685
 *
685
686
 * Else, if @a os is not @c NULL and does not contain arguments, print
686
687
 * generic help, via svn_opt_print_generic_help2() with the @a header,
695
696
 * --version flag *and* subcommand arguments on a help command line.
696
697
 * The logic for handling such a situation should be in one place.
697
698
 *
698
 
 * @since New in 1.5.
699
 
 */
 
699
 * @since New in 1.8.
 
700
 */
 
701
 
 
702
svn_error_t *
 
703
svn_opt_print_help4(apr_getopt_t *os,
 
704
                    const char *pgm_name,
 
705
                    svn_boolean_t print_version,
 
706
                    svn_boolean_t quiet,
 
707
                    svn_boolean_t verbose,
 
708
                    const char *version_footer,
 
709
                    const char *header,
 
710
                    const svn_opt_subcommand_desc2_t *cmd_table,
 
711
                    const apr_getopt_option_t *option_table,
 
712
                    const int *global_options,
 
713
                    const char *footer,
 
714
                    apr_pool_t *pool);
 
715
 
 
716
/**
 
717
 * Same as svn_opt_print_help4(), but with @a verbose always @c FALSE.
 
718
 *
 
719
 * @deprecated Provided for backward compatibility with the 1.7 API.
 
720
 */
 
721
 
 
722
SVN_DEPRECATED
700
723
svn_error_t *
701
724
svn_opt_print_help3(apr_getopt_t *os,
702
725
                    const char *pgm_name,