From f70638cb6cc6d9925ef00aeda48bed3ddb2b1e89 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 7 Apr 2010 14:47:13 +0000 Subject: Fix a trunk-only problem opening dbd drivers: apr_version.h wasn't included, so APR_MAJOR_VERSION wasn't defined, so APR_STRINGIFY(APR_MAJOR_VERSION) returned "APR_MAJOR_VERSION", so we tried to open something like "apr_dbd_sqlite3-APR_MAJOR_VERSI". git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@931574 13f79535-47bb-0310-9956-ffa450edef68 --- dbd/apr_dbd.c | 1 + 1 file changed, 1 insertion(+) (limited to 'dbd') diff --git a/dbd/apr_dbd.c b/dbd/apr_dbd.c index 9d2738100..7f6f26ab1 100644 --- a/dbd/apr_dbd.c +++ b/dbd/apr_dbd.c @@ -26,6 +26,7 @@ #include "apr_thread_mutex.h" #include "apr_lib.h" #include "apr_atomic.h" +#include "apr_version.h" #include "apu_internal.h" #include "apr_dbd_internal.h" -- cgit v1.2.1