summaryrefslogtreecommitdiff
path: root/util-misc
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2009-03-24 16:30:56 +0000
committerJoe Orton <jorton@apache.org>2009-03-24 16:30:56 +0000
commit6f70ff7af962e2e433c468b1456637842d8bc0b8 (patch)
treefa63fc8db36fc884579c345952c8e4210469d200 /util-misc
parent745348bfedacd8333ec89c5c43096e31bf05a0cf (diff)
downloadapr-6f70ff7af962e2e433c468b1456637842d8bc0b8.tar.gz
APR->APU conversion of DSO buildfoo; rename --disable-util-dso to
--disable-modular-dso: * configure.in, Makefile.in: Use APR_DSO_MODULES for set of DSOs to build. * util-misc/apu_dso.c, include/private/apu_internal.h: Use macro APR_HAVE_MODULAR_DSO to determine whether modular DSO build is used. * build/dso.m4 (APR_MODULAR_DSO): Renamed from APU_CHECK_UTIL_DSO. Define APR_HAVE_MODULAR_DSO if modular DSO biuld is used. Add to LIBS not APRUTIL_LIBS. Rename configure flag to --disable-modular-dso to disable modular DSO build. * ldap/*.c, dbm/*.c, dbd/*.c, crypto/*.c: Adjust to use APR_HAVE_MODULAR_DSO. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@757884 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'util-misc')
-rw-r--r--util-misc/apu_dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-misc/apu_dso.c b/util-misc/apu_dso.c
index 1cd42bdd0..0a7a26ca2 100644
--- a/util-misc/apu_dso.c
+++ b/util-misc/apu_dso.c
@@ -31,7 +31,7 @@
#include "apu_internal.h"
#include "apu_version.h"
-#if APR_DSO_BUILD
+#if APR_HAVE_MODULAR_DSO
#if APR_HAS_THREADS
static apr_thread_mutex_t* mutex = NULL;