diff options
Diffstat (limited to 'subversion/svn_private_config.hw')
-rw-r--r-- | subversion/svn_private_config.hw | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/subversion/svn_private_config.hw b/subversion/svn_private_config.hw index 4ac6bad1d00b..c6f69c1ec940 100644 --- a/subversion/svn_private_config.hw +++ b/subversion/svn_private_config.hw @@ -61,10 +61,10 @@ #define SVN_LIBSVN_FS_LINKS_FS_X /* Link local repos access library to client */ -#define SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL +#define SVN_LIBSVN_RA_LINKS_RA_LOCAL /* Link pipe repos access library to client */ -#define SVN_LIBSVN_CLIENT_LINKS_RA_SVN +#define SVN_LIBSVN_RA_LINKS_RA_SVN /* Defined to be the path to the installed binaries */ #define SVN_BINDIR "/usr/local/bin" @@ -122,6 +122,14 @@ Supresses compiler warnings about the variable being unused. */ #define SVN_UNUSED(v) ( (void)(v) ) +#if defined(_MSC_VER) && _MSC_VER >= 1600 +#define HAVE_STDINT_H +#endif + +#if defined(_MSC_VER) && _MSC_VER >= 1800 +#define HAVE_STDBOOL_H +#endif + #endif /* SVN_PRIVATE_CONFIG_HW */ /* Inclusion of Berkeley DB header */ |