From ccdbc60ee7216c6b01cce1a9782da11f1faae71f Mon Sep 17 00:00:00 2001
From: "William A. Rowe Jr"
Date: Wed, 11 Jun 2008 02:59:37 +0000
Subject: [PATCH] Note that the DBD_LIST is supported for Makefile.win builds.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@666508 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/platform/win_compiling.xml | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/docs/manual/platform/win_compiling.xml b/docs/manual/platform/win_compiling.xml
index 1c2042a137..e4c85a5e43 100644
--- a/docs/manual/platform/win_compiling.xml
+++ b/docs/manual/platform/win_compiling.xml
@@ -179,7 +179,7 @@
pose a thread race condition. If building zlib on win32, be sure
to adjust the resulting ms\ntdll.mak file to link to the full
path of srclib\zlib\zdll.lib rather than zlib1.lib (that error in
- configuration of OpenSSL through 0.9.8d and earlier reflects older
+ configuration of OpenSSL through 0.9.8h and earlier reflects older
zlib 1.1 versions.)
@@ -210,6 +210,13 @@ nmake /f Makefile.win _apached
optimization of the resulting files, making it easier to single
step the code to find bugs and track down problems.
+ You can add your apr-util dbd provider choices with the additional
+ make variable DBD_LIST, e.g. DBD_LIST="mysql oracle pgsql sqlite3"
+ to build these four providers. However it's necessary to have
+ the include headers in the INCLUDE path list, db client libraries
+ in the LIB path list, and the db client dll files in the PATH. The
+ specifics for each provider are an exercise left to the reader.
+