Author: pburba Date: Thu Nov 19 15:41:27 2009 New Revision: 882182 URL: http://svn.apache.org/viewvc?rev=882182&view=rev Log: Revert r880584 to fix broken Windows debug build.
Note: r880584 was originally committed as r40510 of s.t.o. The Windows debug build was broken by r880584 and I have been unable to fix it. Per our HACKING rules I am reverting the change, for more details see this thread: http://mail-archives.apache.org/mod_mbox/subversion-dev/200911.mbox/browser. Modified: subversion/trunk/configure.ac subversion/trunk/subversion/include/svn_types.h subversion/trunk/subversion/svn_private_config.hw Modified: subversion/trunk/configure.ac URL: http://svn.apache.org/viewvc/subversion/trunk/configure.ac?rev=882182&r1=882181&r2=882182&view=diff ============================================================================== --- subversion/trunk/configure.ac (original) +++ subversion/trunk/configure.ac Thu Nov 19 15:41:27 2009 @@ -615,15 +615,7 @@ fi fi -AH_BOTTOM([/* - * Subversion developers may want to use some additional debugging facilities - * while working on the code. We'll pull that in here, so individual source - * files don't have to include this header manually. - */ -#ifdef SVN_DEBUG -#include "private/svn_debug.h" -#endif - +AH_BOTTOM( #define N_(x) x #define U_(x) x #ifdef ENABLE_NLS @@ -637,7 +629,7 @@ #define gettext(x) (x) #define dgettext(domain, x) (x) #endif -]) +) dnl Used to simulate makefile conditionals. GETTEXT_CODESET=\# Modified: subversion/trunk/subversion/include/svn_types.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_types.h?rev=882182&r1=882181&r2=882182&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_types.h (original) +++ subversion/trunk/subversion/include/svn_types.h Thu Nov 19 15:41:27 2009 @@ -1144,4 +1144,14 @@ #include "svn_error.h" +/* + * Subversion developers may want to use some additional debugging facilities + * while working on the code. We'll pull that in here, so individual source + * files don't have to include this header manually. + */ +#ifdef SVN_DEBUG +#include "private/svn_debug.h" +#endif + + #endif /* SVN_TYPES_H */ Modified: subversion/trunk/subversion/svn_private_config.hw URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn_private_config.hw?rev=882182&r1=882181&r2=882182&view=diff ============================================================================== --- subversion/trunk/subversion/svn_private_config.hw (original) +++ subversion/trunk/subversion/svn_private_config.hw Thu Nov 19 15:41:27 2009 @@ -91,12 +91,3 @@ #define APU_WANT_DB #include <apu_want.h> #endif - -/* - * Subversion developers may want to use some additional debugging facilities - * while working on the code. We'll pull that in here, so individual source - * files don't have to include this header manually. - */ -#ifdef SVN_DEBUG -#include "private/svn_debug.h" -#endif
