Author: wrowe
Date: Wed May 28 08:52:28 2008
New Revision: 660991
URL: http://svn.apache.org/viewvc?rev=660991&view=rev
Log:
There is no ssl/ except in the sandbox
Modified:
apr/apr-util/trunk/build.conf
Modified: apr/apr-util/trunk/build.conf
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/build.conf?rev=660991&r1=660990&r2=660991&view=diff
==============================================================================
--- apr/apr-util/trunk/build.conf (original)
+++ apr/apr-util/trunk/build.conf Wed May 28 08:52:28 2008
@@ -8,7 +8,8 @@
paths =
buckets/*.c
crypto/*.c
- dbm/*.c
+ dbm/apr_dbm_sdbm.c
+ dbm/apr_dbm.c
dbm/sdbm/*.c
encoding/*.c
hooks/*.c
@@ -21,7 +22,6 @@
strmatch/*.c
xlate/*.c
dbd/apr_dbd.c
- ssl/*.c
# we have no platform-specific subdirs
platform_dirs =
@@ -29,7 +29,10 @@
# the public headers
headers = include/*.h include/private/*.h
-modules = ldap dbd_pgsql dbd_sqlite2 dbd_sqlite3 dbd_oracle dbd_mysql dbd_freetds
+modules =
+ dbd_pgsql dbd_sqlite2 dbd_sqlite3 dbd_oracle dbd_mysql dbd_freetds
+ dbm_berkeleydb dbm_gdbm dbm_ndbm
+ ldap
# gen_uri_delim.c
@@ -60,8 +63,21 @@
paths = dbd/apr_dbd_freetds.c
target = dbd/apr_dbd_freetds.la
+[dbm_berkeleydb]
+paths = dbm/apr_dbm_berkeleydb.c
+target = dbm/apr_dbm_berkeleydb.la
+
+[dbm_gdbm]
+paths = dbm/apr_dbm_gdbm.c
+target = dbm/apr_dbm_gdbm.la
+
+[dbm_ndbm]
+paths = dbm/apr_dbm_ndbm.c
+target = dbm/apr_dbm_ndbm.la
+
[ldap]
paths = ldap/apr_ldap_init.c \
ldap/apr_ldap_option.c \
ldap/apr_ldap_rebind.c
target = ldap/apr_ldap.la
+
|