From owner-svn-src-head@freebsd.org Tue May 8 21:01:05 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C66A5FC9FD2; Tue, 8 May 2018 21:01:05 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C5296DCBE; Tue, 8 May 2018 21:01:05 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5DF792F8F6; Tue, 8 May 2018 21:01:05 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w48L15dQ053360; Tue, 8 May 2018 21:01:05 GMT (envelope-from peter@FreeBSD.org) Received: (from peter@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w48L15jU053359; Tue, 8 May 2018 21:01:05 GMT (envelope-from peter@FreeBSD.org) Message-Id: <201805082101.w48L15jU053359@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: peter set sender to peter@FreeBSD.org using -f From: Peter Wemm Date: Tue, 8 May 2018 21:01:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333387 - head/usr.bin/svn X-SVN-Group: head X-SVN-Commit-Author: peter X-SVN-Commit-Paths: head/usr.bin/svn X-SVN-Commit-Revision: 333387 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 May 2018 21:01:06 -0000 Author: peter Date: Tue May 8 21:01:04 2018 New Revision: 333387 URL: https://svnweb.freebsd.org/changeset/base/333387 Log: Update svn_private_config.h - I misread an autoconf change. SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL -> SVN_LIBSVN_RA_LINKS_RA_LOCAL SVN_LIBSVN_CLIENT_LINKS_RA_SERF -> SVN_LIBSVN_RA_LINKS_RA_SERF SVN_LIBSVN_CLIENT_LINKS_RA_SVN -> SVN_LIBSVN_RA_LINKS_RA_SVN Modified: head/usr.bin/svn/svn_private_config.h Modified: head/usr.bin/svn/svn_private_config.h ============================================================================== --- head/usr.bin/svn/svn_private_config.h Tue May 8 20:39:35 2018 (r333386) +++ head/usr.bin/svn/svn_private_config.h Tue May 8 21:01:04 2018 (r333387) @@ -154,6 +154,9 @@ /* Defined if plaintext password/passphrase storage is disabled */ /* #undef SVN_DISABLE_PLAINTEXT_PASSWORD_STORAGE */ +/* Shared library file name suffix format */ +#undef SVN_DSO_SUFFIX_FMT + /* The desired major version for the Berkeley DB */ #define SVN_FS_WANT_DB_MAJOR 4 @@ -175,12 +178,18 @@ /* Is Mac OS KeyChain support enabled? */ /* #undef SVN_HAVE_KEYCHAIN_SERVICES */ +/* Defined if KF5 available */ +#undef SVN_HAVE_KF5 + /* Defined if KWallet support is enabled */ /* #undef SVN_HAVE_KWALLET */ /* Defined if libmagic support is enabled */ #define SVN_HAVE_LIBMAGIC 1 +/* Is libsecret support enabled? */ +#undef SVN_HAVE_LIBSECRET + /* Is Mach-O low-level _dyld API available? */ /* #undef SVN_HAVE_MACHO_ITERATE */ @@ -199,15 +208,6 @@ /* Defined if support for Serf is enabled */ #define SVN_HAVE_SERF 1 -/* Defined if libsvn_client should link against libsvn_ra_local */ -#define SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL 1 - -/* Defined if libsvn_client should link against libsvn_ra_serf */ -#define SVN_LIBSVN_CLIENT_LINKS_RA_SERF 1 - -/* Defined if libsvn_client should link against libsvn_ra_svn */ -#define SVN_LIBSVN_CLIENT_LINKS_RA_SVN 1 - /* Defined if libsvn_fs should link against libsvn_fs_base */ /* #undef SVN_LIBSVN_FS_LINKS_FS_BASE */ @@ -216,6 +216,15 @@ /* Defined if libsvn_fs should link against libsvn_fs_x */ #define SVN_LIBSVN_FS_LINKS_FS_X 1 + +/* Defined if libsvn_ra should link against libsvn_ra_local */ +#define SVN_LIBSVN_RA_LINKS_RA_LOCAL 1 + +/* Defined if libsvn_ra should link against libsvn_ra_serf */ +#define SVN_LIBSVN_RA_LINKS_RA_SERF 1 + +/* Defined if libsvn_ra should link against libsvn_ra_svn */ +#define SVN_LIBSVN_RA_LINKS_RA_SVN 1 /* Defined to be the path to the installed locale dirs */ #define SVN_LOCALE_DIR "NONE/share/locale"