2 * svn_private_config.hw : Template for svn_private_config.h on Win32.
4 * ====================================================================
5 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
7 * This software is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at http://subversion.tigris.org/license-1.html.
10 * If newer versions of this license are posted there, you may use a
11 * newer version instead, at your option.
13 * This software consists of voluntary contributions made by many
14 * individuals. For exact contribution history, see the revision
15 * history and logs, available at http://subversion.tigris.org/.
16 * ====================================================================
19 /* ==================================================================== */
24 #ifndef SVN_PRIVATE_CONFIG_HW
25 #define SVN_PRIVATE_CONFIG_HW
27 /* The version of Berkeley DB we want */
28 #define SVN_FS_WANT_DB_MAJOR 4
29 #define SVN_FS_WANT_DB_MINOR 0
30 #define SVN_FS_WANT_DB_PATCH 14
33 /* Path separator for local filesystem */
34 #define SVN_PATH_LOCAL_SEPARATOR '\\'
36 /* Name of system's null device */
37 #define SVN_NULL_DEVICE_NAME "nul"
39 /* Link fs fs library into the fs library */
40 #define SVN_LIBSVN_FS_LINKS_FS_FS
42 /* Link local repos access library to client */
43 #define SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL
45 /* Link pipe repos access library to client */
46 #define SVN_LIBSVN_CLIENT_LINKS_RA_SVN
48 /* Defined to be the path to the installed binaries */
49 #define SVN_BINDIR "/usr/local/bin"
53 /* The default FS back-end type */
54 #define DEFAULT_FS_TYPE "fsfs"
57 /* Define to the Python/C API format character suitable for apr_int64_t */
59 #define SVN_APR_INT64_T_PYCFMT "l"
61 #define SVN_APR_INT64_T_PYCFMT "L"
64 /* Setup gettext macros */
66 #define PACKAGE_NAME "subversion"
69 #define SVN_LOCALE_RELATIVE_PATH "../share/locale"
72 #define _(x) dgettext(PACKAGE_NAME, x)
75 #define gettext(x) (x)
76 #define dgettext(domain,x) (x)
79 #endif /* SVN_PRIVATE_CONFIG_HW */