20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* $Id$ */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/** @file
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync *
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/*
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * svn_private_config.h
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync *
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * ====================================================================
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * Copyright (c) 2000-2004 CollabNet. All rights reserved.
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync *
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * This software is licensed as described in the file COPYING, which
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * you should have received as part of this distribution. The terms
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * are also available at http://subversion.tigris.org/license-1.html.
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * If newer versions of this license are posted there, you may use a
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * newer version instead, at your option.
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync *
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * This software consists of voluntary contributions made by many
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * individuals. For exact contribution history, see the revision
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * history and logs, available at http://subversion.tigris.org/.
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync * ====================================================================
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* ==================================================================== */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#ifndef SVN_PRIVATE_CONFIG_H
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_PRIVATE_CONFIG_H
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* The version of Berkeley DB we want */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_FS_WANT_DB_MAJOR 4
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_FS_WANT_DB_MINOR 0
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_FS_WANT_DB_PATCH 14
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Path separator for local filesystem */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_PATH_LOCAL_SEPARATOR '/'
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Name of system's null device */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_NULL_DEVICE_NAME "/dev/null"
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Link fs fs library into the fs library */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_LIBSVN_FS_LINKS_FS_FS
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Link local repos access library to client */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Link pipe repos access library to client */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_LIBSVN_CLIENT_LINKS_RA_SVN
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Defined to be the path to the installed binaries */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_BINDIR "/usr/local/bin"
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* The default FS back-end type */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define DEFAULT_FS_TYPE "fsfs"
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Define to the Python/C API format character suitable for apr_int64_t */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_APR_INT64_T_PYCFMT "L"
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync/* Setup gettext macros */
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define N_(x) x
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define PACKAGE_NAME "subversion"
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#ifdef ENABLE_NLS
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define SVN_LOCALE_RELATIVE_PATH "../share/locale"
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#include <locale.h>
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#include <libintl.h>
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define _(x) dgettext(PACKAGE_NAME, x)
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#else
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define _(x) (x)
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define gettext(x) (x)
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#define dgettext(domain,x) (x)
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#endif
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync
20ebd0a515be297379ebdc639af4297da5d0034fvboxsync#endif /* SVN_PRIVATE_CONFIG_H */