VirtualBox

source: vbox/trunk/src/apps/svnsync-vbox/svn_private_config.h@ 29684

Last change on this file since 29684 was 29684, checked in by vboxsync, 14 years ago

exported svnsync-vbox to OSE

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1/* $Id: svn_private_config.h 29684 2010-05-20 11:30:05Z vboxsync $ */
2/** @file
3 *
4 */
5/*
6 * svn_private_config.h
7 *
8 * ====================================================================
9 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
10 *
11 * This software is licensed as described in the file COPYING, which
12 * you should have received as part of this distribution. The terms
13 * are also available at http://subversion.tigris.org/license-1.html.
14 * If newer versions of this license are posted there, you may use a
15 * newer version instead, at your option.
16 *
17 * This software consists of voluntary contributions made by many
18 * individuals. For exact contribution history, see the revision
19 * history and logs, available at http://subversion.tigris.org/.
20 * ====================================================================
21 */
22
23/* ==================================================================== */
24
25
26
27
28
29#ifndef SVN_PRIVATE_CONFIG_H
30#define SVN_PRIVATE_CONFIG_H
31
32/* The version of Berkeley DB we want */
33#define SVN_FS_WANT_DB_MAJOR 4
34#define SVN_FS_WANT_DB_MINOR 0
35#define SVN_FS_WANT_DB_PATCH 14
36
37
38/* Path separator for local filesystem */
39#define SVN_PATH_LOCAL_SEPARATOR '/'
40
41/* Name of system's null device */
42#define SVN_NULL_DEVICE_NAME "/dev/null"
43
44/* Link fs fs library into the fs library */
45#define SVN_LIBSVN_FS_LINKS_FS_FS
46
47/* Link local repos access library to client */
48#define SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL
49
50/* Link pipe repos access library to client */
51#define SVN_LIBSVN_CLIENT_LINKS_RA_SVN
52
53/* Defined to be the path to the installed binaries */
54#define SVN_BINDIR "/usr/local/bin"
55
56
57
58/* The default FS back-end type */
59#define DEFAULT_FS_TYPE "fsfs"
60
61
62/* Define to the Python/C API format character suitable for apr_int64_t */
63#define SVN_APR_INT64_T_PYCFMT "L"
64
65/* Setup gettext macros */
66#define N_(x) x
67#define PACKAGE_NAME "subversion"
68
69#ifdef ENABLE_NLS
70#define SVN_LOCALE_RELATIVE_PATH "../share/locale"
71#include <locale.h>
72#include <libintl.h>
73#define _(x) dgettext(PACKAGE_NAME, x)
74#else
75#define _(x) (x)
76#define gettext(x) (x)
77#define dgettext(domain,x) (x)
78#endif
79
80#endif /* SVN_PRIVATE_CONFIG_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette