1 | /* $Id: svn_private_config.h 76544 2018-12-30 06:40:15Z 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 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
32 | # pragma once
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | /* The version of Berkeley DB we want */
|
---|
36 | #define SVN_FS_WANT_DB_MAJOR 4
|
---|
37 | #define SVN_FS_WANT_DB_MINOR 0
|
---|
38 | #define SVN_FS_WANT_DB_PATCH 14
|
---|
39 |
|
---|
40 |
|
---|
41 | /* Path separator for local filesystem */
|
---|
42 | #define SVN_PATH_LOCAL_SEPARATOR '/'
|
---|
43 |
|
---|
44 | /* Name of system's null device */
|
---|
45 | #define SVN_NULL_DEVICE_NAME "/dev/null"
|
---|
46 |
|
---|
47 | /* Link fs fs library into the fs library */
|
---|
48 | #define SVN_LIBSVN_FS_LINKS_FS_FS
|
---|
49 |
|
---|
50 | /* Link local repos access library to client */
|
---|
51 | #define SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL
|
---|
52 |
|
---|
53 | /* Link pipe repos access library to client */
|
---|
54 | #define SVN_LIBSVN_CLIENT_LINKS_RA_SVN
|
---|
55 |
|
---|
56 | /* Defined to be the path to the installed binaries */
|
---|
57 | #define SVN_BINDIR "/usr/local/bin"
|
---|
58 |
|
---|
59 |
|
---|
60 |
|
---|
61 | /* The default FS back-end type */
|
---|
62 | #define DEFAULT_FS_TYPE "fsfs"
|
---|
63 |
|
---|
64 |
|
---|
65 | /* Define to the Python/C API format character suitable for apr_int64_t */
|
---|
66 | #define SVN_APR_INT64_T_PYCFMT "L"
|
---|
67 |
|
---|
68 | /* Setup gettext macros */
|
---|
69 | #define N_(x) x
|
---|
70 | #define PACKAGE_NAME "subversion"
|
---|
71 |
|
---|
72 | #ifdef ENABLE_NLS
|
---|
73 | #define SVN_LOCALE_RELATIVE_PATH "../share/locale"
|
---|
74 | #include <locale.h>
|
---|
75 | #include <libintl.h>
|
---|
76 | #define _(x) dgettext(PACKAGE_NAME, x)
|
---|
77 | #else
|
---|
78 | #define _(x) (x)
|
---|
79 | #define gettext(x) (x)
|
---|
80 | #define dgettext(domain,x) (x)
|
---|
81 | #endif
|
---|
82 |
|
---|
83 | #endif /* SVN_PRIVATE_CONFIG_H */
|
---|