Author: hwright
Date: Sat Nov 24 13:26:02 2012
New Revision: 1413184
URL: http://svn.apache.org/viewvc?rev=1413184&view=rev
Log:
Remove the ev2-shims configure flag, and replace it with an ev2-impl configure
flag. Thus, a developer can specify the use of Ev2 implementation use at
configure-time, and not have to add custom compile flags or comment/decomment
a define in the source.
(This flag currently isn't used in the source, but will be shortly.)
* configure.ac
(ev2-shims): Remove.
(ev2-impl): Add.
Modified:
subversion/trunk/configure.ac
Modified: subversion/trunk/configure.ac
URL:
http://svn.apache.org/viewvc/subversion/trunk/configure.ac?rev=1413184&r1=1413183&r2=1413184&view=diff
==============================================================================
--- subversion/trunk/configure.ac (original)
+++ subversion/trunk/configure.ac Sat Nov 24 13:26:02 2012
@@ -626,16 +626,18 @@ AC_SUBST(SVN_GNOME_KEYRING_INCLUDES)
AC_SUBST(SVN_GNOME_KEYRING_LIBS)
-dnl Ev2 experimental feature ----------------------
-dnl Note: The Ev2 compat code will be built unconditionally, but by providing
-dnl this flag, users can enforce Ev2 compliance for testing purposes
-AC_ARG_ENABLE(ev2-shims,
- AS_HELP_STRING([--enable-ev2-shims],
- [Compile with Ev2 translation [EXPERIMENTAL]]),
- [enable_ev2_shims=$enableval],[enable_ev2_shims=no])
-if test "$enable_ev2_shims" = "yes"; then
- AC_DEFINE(ENABLE_EV2_SHIMS, 1,
- [Define to 1 if Ev2 should be interjected into editor stacks.])
+dnl Ev2 experimental features ----------------------
+dnl Note: The Ev2 implementations will be built unconditionally, but by
+dnl providing this flag, users can choose to use the currently-shimmed Ev2
+dnl editor implementations for various operations. This will probably
+dnl negatively impact performance, but is useful for testing.
+AC_ARG_ENABLE(ev2-impl,
+ AS_HELP_STRING([--enable-ev2-impl],
+ [Use Ev2 implementations, where available [EXPERIMENTAL]]),
+ [enable_ev2_impl=$enableval],[enable_ev2_impl=no])
+if test "$enable_ev2_impl" = "yes"; then
+ AC_DEFINE(ENABLE_EV2_IMPL, 1,
+ [Define to 1 if Ev2 implementations should be used.])
fi