about summary refs log tree commit diff
path: root/build/httpd-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/httpd-build.sh')
-rwxr-xr-xbuild/httpd-build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/httpd-build.sh b/build/httpd-build.sh
index a5b43d7443291..6182d79a2f65c 100755
--- a/build/httpd-build.sh
+++ b/build/httpd-build.sh
@@ -1,11 +1,12 @@
 #! /bin/sh
 
 export PATH=/bin:/usr/bin
+export LD_LIBRARY_PATH=$ssl/lib:
 
 top=`pwd`
 tar xvfz $src || exit 1
 cd httpd-* || exit 1
-./configure --prefix=$top --enable-ssl --with-ssl=$ssl --enable-mods-shared=all || exit 1
+./configure --prefix=$top --enable-ssl --with-ssl=$ssl --with-berkeley-db=$db4 --enable-mods-shared=all || exit 1
 make || exit 1
 make install || exit 1
 cd $top || exit 1