michael@513: Index: configure michael@513: --- configure.orig 2012-02-10 16:45:29.000000000 +0100 michael@513: +++ configure 2012-02-15 10:31:57.000000000 +0100 michael@513: @@ -5956,6 +5956,11 @@ michael@513: ac_sub_cache_file="$ac_dots$cache_file" ;; michael@513: esac michael@513: michael@513: + args="$args --prefix=$prefix/libexec/subversion/neon" michael@513: + if [ ".$with_ssl" = .yes ]; then michael@513: + args="$args --with-ssl" michael@513: + fi michael@513: + michael@513: # The eval makes quoting arguments work. michael@513: if eval $SHELL $ac_abs_srcdir/configure $ac_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_abs_srcdir --with-apr=$apr_config --with-apr-util=$apu_config michael@513: then : michael@513: Index: subversion/mod_dav_svn/repos.c michael@513: --- subversion/mod_dav_svn/repos.c.orig 2012-02-02 17:13:30.000000000 +0100 michael@513: +++ subversion/mod_dav_svn/repos.c 2012-02-15 10:31:57.000000000 +0100 michael@513: @@ -3507,6 +3507,7 @@ michael@513: */ michael@513: ap_fputs(output, bb, michael@513: " \n
Powered by " michael@513: + "OpenPKG " michael@513: "" michael@513: "Apache Subversion" michael@513: " version " SVN_VERSION "." michael@513: Index: subversion/svnserve/cyrus_auth.c michael@513: --- subversion/svnserve/cyrus_auth.c.orig 2011-06-23 18:43:25.000000000 +0200 michael@513: +++ subversion/svnserve/cyrus_auth.c 2012-02-15 10:31:57.000000000 +0100 michael@513: @@ -110,7 +110,7 @@ michael@513: status = svn_ra_svn__sasl_common_init(pool); michael@513: if (status) michael@513: return svn_error_wrap_apr(status, michael@513: - _("Could not initialize the SASL library")); michael@513: + _("Could not initialize the SASL library (svnserve: APR failure)")); michael@513: michael@513: /* The second parameter tells SASL to look for a configuration file michael@513: named subversion.conf. */ michael@513: @@ -120,7 +120,7 @@ michael@513: svn_error_t *err = svn_error_create(SVN_ERR_RA_NOT_AUTHORIZED, NULL, michael@513: sasl_errstring(result, NULL, NULL)); michael@513: return svn_error_quick_wrap(err, michael@513: - _("Could not initialize the SASL library")); michael@513: + _("Could not initialize the SASL library (svnserve)")); michael@513: } michael@513: return SVN_NO_ERROR; michael@513: } michael@513: Index: subversion/svnserve/main.c michael@513: --- subversion/svnserve/main.c.orig 2011-06-21 20:00:13.000000000 +0200 michael@513: +++ subversion/svnserve/main.c 2012-02-15 10:31:57.000000000 +0100 michael@513: @@ -59,6 +59,10 @@ michael@513: michael@513: #include "server.h" michael@513: michael@513: +#ifdef SVN_HAVE_SASL michael@513: +#include michael@513: +#endif michael@513: + michael@513: /* The strategy for handling incoming connections. Some of these may be michael@513: unavailable due to platform limitations. */ michael@513: enum connection_handling_mode { michael@513: @@ -446,6 +450,7 @@ michael@513: michael@513: #ifdef SVN_HAVE_SASL michael@513: SVN_INT_ERR(cyrus_init(pool)); michael@513: + openlog("svnserve", LOG_NDELAY|LOG_PID, LOG_DAEMON); michael@513: #endif michael@513: michael@513: /* Check library versions */