summaryrefslogtreecommitdiff
path: root/subversion/svn_private_config.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/svn_private_config.h.in')
-rw-r--r--subversion/svn_private_config.h.in72
1 files changed, 53 insertions, 19 deletions
diff --git a/subversion/svn_private_config.h.in b/subversion/svn_private_config.h.in
index 0d14c2f..b322e83 100644
--- a/subversion/svn_private_config.h.in
+++ b/subversion/svn_private_config.h.in
@@ -6,6 +6,9 @@
/* The http library to use by default */
#undef DEFAULT_HTTP_LIBRARY
+/* Define to 1 if Ev2 implementations should be used. */
+#undef ENABLE_EV2_IMPL
+
/* Define to 1 if translation of program messages to the user's native
language is requested. */
#undef ENABLE_NLS
@@ -64,6 +67,21 @@
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
+/* Define to 1 if you have the <sys/utsname.h> header file. */
+#undef HAVE_SYS_UTSNAME_H
+
+/* Define to 1 if you have the `tcgetattr' function. */
+#undef HAVE_TCGETATTR
+
+/* Define to 1 if you have the `tcsetattr' function. */
+#undef HAVE_TCSETATTR
+
+/* Defined if we have a usable termios library. */
+#undef HAVE_TERMIOS_H
+
+/* Define to 1 if you have the `uname' function. */
+#undef HAVE_UNAME
+
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
@@ -73,8 +91,7 @@
/* Define to 1 if you have the <zlib.h> header file. */
#undef HAVE_ZLIB_H
-/* Define to the sub-directory in which libtool stores uninstalled libraries.
- */
+/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* Define to the address where bug reports for this package should be sent. */
@@ -107,12 +124,21 @@
/* Defined to be the path to the installed binaries */
#undef SVN_BINDIR
+/* Defined to the config.guess name of the build system */
+#undef SVN_BUILD_HOST
+
+/* Defined to the config.guess name of the build target */
+#undef SVN_BUILD_TARGET
+
/* The path of a default editor for the client. */
#undef SVN_CLIENT_EDITOR
/* Defined if the full version matching rules are disabled */
#undef SVN_DISABLE_FULL_VERSION_MATCH
+/* Defined if plaintext password/passphrase storage is disabled */
+#undef SVN_DISABLE_PLAINTEXT_PASSWORD_STORAGE
+
/* The desired major version for the Berkeley DB */
#undef SVN_FS_WANT_DB_MAJOR
@@ -122,9 +148,15 @@
/* The desired patch version for the Berkeley DB */
#undef SVN_FS_WANT_DB_PATCH
+/* Define if compiler provides atomic builtins */
+#undef SVN_HAS_ATOMIC_BUILTINS
+
/* Is GNOME Keyring support enabled? */
#undef SVN_HAVE_GNOME_KEYRING
+/* Is GPG Agent support enabled? */
+#undef SVN_HAVE_GPG_AGENT
+
/* Is Mac OS KeyChain support enabled? */
#undef SVN_HAVE_KEYCHAIN_SERVICES
@@ -134,12 +166,15 @@
/* Defined if libmagic support is enabled */
#undef SVN_HAVE_LIBMAGIC
+/* Is Mach-O low-level _dyld API available? */
+#undef SVN_HAVE_MACHO_ITERATE
+
+/* Is Mac OS property list API available? */
+#undef SVN_HAVE_MACOS_PLIST
+
/* Defined if apr_memcache (standalone or in apr-util) is present */
#undef SVN_HAVE_MEMCACHE
-/* Defined if support for Neon is enabled */
-#undef SVN_HAVE_NEON
-
/* Defined if Expat 1.0 or 1.1 was found */
#undef SVN_HAVE_OLD_EXPAT
@@ -152,9 +187,6 @@
/* Defined if libsvn_client should link against libsvn_ra_local */
#undef SVN_LIBSVN_CLIENT_LINKS_RA_LOCAL
-/* Defined if libsvn_client should link against libsvn_ra_neon */
-#undef SVN_LIBSVN_CLIENT_LINKS_RA_NEON
-
/* Defined if libsvn_client should link against libsvn_ra_serf */
#undef SVN_LIBSVN_CLIENT_LINKS_RA_SERF
@@ -170,23 +202,14 @@
/* Defined to be the path to the installed locale dirs */
#undef SVN_LOCALE_DIR
-/* Define to 1 if you have Neon 0.26 or later. */
-#undef SVN_NEON_0_26
-
-/* Define to 1 if you have Neon 0.27 or later. */
-#undef SVN_NEON_0_27
-
-/* Define to 1 if you have Neon 0.28 or later. */
-#undef SVN_NEON_0_28
-
/* Defined to be the null device for the system */
#undef SVN_NULL_DEVICE_NAME
/* Defined to be the path separator used on your local filesystem */
#undef SVN_PATH_LOCAL_SEPARATOR
-/* Defined if support for GSSAPI is enabled */
-#undef SVN_RA_SERF_HAVE_GSSAPI
+/* Subversion library major verson */
+#undef SVN_SOVERSION
/* Defined if svn should use the amalgamated version of sqlite */
#undef SVN_SQLITE_INLINE
@@ -206,12 +229,23 @@
#endif
+
+/* Indicate to translators that string X should be translated. Do not look
+ up the translation at run time; just expand to X. This macro is suitable
+ for use where a constant string is required at compile time. */
#define N_(x) x
+/* Indicate to translators that we have decided the string X should not be
+ translated. Expand to X. */
#define U_(x) x
#ifdef ENABLE_NLS
#include <locale.h>
#include <libintl.h>
+/* Indicate to translators that string X should be translated. At run time,
+ look up and return the translation of X. */
#define _(x) dgettext(PACKAGE_NAME, x)
+/* Indicate to translators that strings X1 and X2 are singular and plural
+ forms of the same message, and should be translated. At run time, return
+ an appropriate translation depending on the number N. */
#define Q_(x1, x2, n) dngettext(PACKAGE_NAME, x1, x2, n)
#else
#define _(x) (x)