You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2008/07/07 23:14:57 UTC

svn commit: r674638 - /apr/apr-util/branches/1.3.x/misc/apu_dso.c

Author: bojan
Date: Mon Jul  7 14:14:57 2008
New Revision: 674638

URL: http://svn.apache.org/viewvc?rev=674638&view=rev
Log:
Backport r674637 from the trunk.
Fix build failure when --disable-util-dso is used.
PR45320.

Modified:
    apr/apr-util/branches/1.3.x/misc/apu_dso.c

Modified: apr/apr-util/branches/1.3.x/misc/apu_dso.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/misc/apu_dso.c?rev=674638&r1=674637&r2=674638&view=diff
==============================================================================
--- apr/apr-util/branches/1.3.x/misc/apu_dso.c (original)
+++ apr/apr-util/branches/1.3.x/misc/apu_dso.c Mon Jul  7 14:14:57 2008
@@ -102,6 +102,7 @@
     return ret;
 }
 
+#if APR_HAS_DSO
 apr_status_t apu_dso_load(apr_dso_handle_sym_t *dsoptr, const char *module,
                           const char *modsym, apr_pool_t *pool)
 {
@@ -177,4 +178,5 @@
     return rv;
 #endif /* APU_DSO_BUILD */
 }
+#endif /* APR_HAS_DSO */