From 6470310f7610c64b0e19e638d1b538daeb7f9209 Mon Sep 17 00:00:00 2001 From: glasser Date: Fri, 29 Feb 2008 21:58:32 +0000 Subject: [PATCH] * configure.ac: Rename enable_dso to use_dso so --enable-dso is truly ignored as an argument. Patch by: Dan Christian git-svn-id: http://svn.collab.net/repos/svn/trunk@29646 612f8ebc-c883-4be0-9ee0-a4e9ef946e3a --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index bcaef1b67..83b61bbf6 100644 --- a/configure.ac +++ b/configure.ac @@ -598,7 +598,7 @@ AS_HELP_STRING([--enable-runtime-module-search], [Turn on dynamic loading of RA/FS libraries]), [ if test "$enableval" = "yes"; then - enable_dso=yes + use_dso=yes if test "$enable_shared" = "no"; then AC_MSG_ERROR([--enable-runtime-module-search conflicts with --disable-shared]) fi @@ -607,7 +607,7 @@ AS_HELP_STRING([--enable-runtime-module-search], fi ]) -if test "$enable_shared" = "no" || test "$enable_dso" != "yes"; then +if test "$enable_shared" = "no" || test "use_dso" != "yes"; then ### We want ra_local first to handle the following scenario: ### user has neon and db3 in /usr/local, and db4 in ### /usr/local/BerkeleyDB.4.0. If libsvn_ra_neon.la comes before -- 2.11.4.GIT