You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by co...@apache.org on 2011/06/01 17:28:48 UTC

svn commit: r1130189 - /apr/apr-util/branches/1.4.x/ldap/apr_ldap_rebind.c

Author: covener
Date: Wed Jun  1 15:28:48 2011
New Revision: 1130189

URL: http://svn.apache.org/viewvc?rev=1130189&view=rev
Log:
51307: Fix ldap_rebind build error when ldap is enabled and APR is built without threads.

Submitted By: Philipp <pippo deo.li>
Reviewed By: covener


Modified:
    apr/apr-util/branches/1.4.x/ldap/apr_ldap_rebind.c

Modified: apr/apr-util/branches/1.4.x/ldap/apr_ldap_rebind.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/ldap/apr_ldap_rebind.c?rev=1130189&r1=1130188&r2=1130189&view=diff
==============================================================================
--- apr/apr-util/branches/1.4.x/ldap/apr_ldap_rebind.c (original)
+++ apr/apr-util/branches/1.4.x/ldap/apr_ldap_rebind.c Wed Jun  1 15:28:48 2011
@@ -81,11 +81,11 @@ APU_DECLARE_LDAP(apr_status_t) apr_ldap_
     get_apd
 #endif
 
+#if APR_HAS_THREADS
     /* run after apr_thread_mutex_create cleanup */
     apr_pool_cleanup_register(pool, &apr_ldap_xref_lock, apr_ldap_pool_cleanup_set_null,
                               apr_pool_cleanup_null);
 
-#if APR_HAS_THREADS
     if (apr_ldap_xref_lock == NULL) {
         retcode = apr_thread_mutex_create(&apr_ldap_xref_lock, APR_THREAD_MUTEX_DEFAULT, pool);
     }