65 lines
2.4 KiB
Diff
65 lines
2.4 KiB
Diff
---
|
|
dist/configure.ac | 18 +++++++++---------
|
|
1 file changed, 9 insertions(+), 9 deletions(-)
|
|
|
|
Index: db-5.3.21/dist/configure.ac
|
|
===================================================================
|
|
--- db-5.3.21.orig/dist/configure.ac
|
|
+++ db-5.3.21/dist/configure.ac
|
|
@@ -1061,19 +1061,19 @@ AC_SUBST(LTLIBOBJS)
|
|
|
|
# Initial output file list.
|
|
CREATE_LIST="Makefile
|
|
- db_cxx.h:$topdir/src/dbinc/db_cxx.in
|
|
- db_int.h:$topdir/src/dbinc/db_int.in
|
|
- clib_port.h:$topdir/dist/clib_port.in
|
|
+ db_cxx.h:$topdir/src/dbinc/db_cxx.in \
|
|
+ db_int.h:$topdir/src/dbinc/db_int.in \
|
|
+ clib_port.h:$topdir/dist/clib_port.in \
|
|
include.tcl:$topdir/test/tcl/include.tcl"
|
|
|
|
# Create the db.h file from a source file, a list of global function
|
|
# prototypes, and, if configured for unique names, a list of #defines
|
|
# to do DB_VERSION_UNIQUE_NAME substitution.
|
|
if test "$db_cv_uniquename" = "yes"; then
|
|
- CREATE_LIST="$CREATE_LIST
|
|
+ CREATE_LIST="$CREATE_LIST \
|
|
db.h:$topdir/src/dbinc/db.in:$topdir/src/dbinc_auto/api_flags.in:$topdir/src/dbinc_auto/ext_def.in:$topdir/src/dbinc_auto/ext_prot.in"
|
|
else
|
|
- CREATE_LIST="$CREATE_LIST
|
|
+ CREATE_LIST="$CREATE_LIST \
|
|
db.h:$topdir/src/dbinc/db.in:$topdir/src/dbinc_auto/api_flags.in:$topdir/src/dbinc_auto/ext_prot.in"
|
|
fi
|
|
|
|
@@ -1081,7 +1081,7 @@ fi
|
|
# does the DB_VERSION_UNIQUE_NAME substitution), which is included by
|
|
# the db_int.h file.
|
|
if test "$db_cv_uniquename" = "yes"; then
|
|
- CREATE_LIST="$CREATE_LIST
|
|
+ CREATE_LIST="$CREATE_LIST \
|
|
db_int_def.h:$topdir/src/dbinc_auto/int_def.in"
|
|
db_int_def='#include "db_int_def.h"'
|
|
fi
|
|
@@ -1091,18 +1091,18 @@ fi
|
|
# of #defines to do DB_VERSION_UNIQUE_NAME substitution.
|
|
if test "$db_cv_compat185" = "yes"; then
|
|
if test "$db_cv_uniquename" = "yes"; then
|
|
- CREATE_LIST="$CREATE_LIST
|
|
+ CREATE_LIST="$CREATE_LIST \
|
|
db_185.h:$topdir/src/dbinc/db_185.in:$topdir/src/dbinc_auto/ext_185_def.in:$topdir/src/dbinc_auto/ext_185_prot.in
|
|
db185_int.h:$topdir/lang/db185/db185_int.in:$topdir/src/dbinc_auto/ext_185_def.in:$topdir/src/dbinc_auto/ext_185_prot.in"
|
|
else
|
|
- CREATE_LIST="$CREATE_LIST
|
|
+ CREATE_LIST="$CREATE_LIST \
|
|
db_185.h:$topdir/src/dbinc/db_185.in:$topdir/src/dbinc_auto/ext_185_prot.in
|
|
db185_int.h:$topdir/lang/db185/db185_int.in:$topdir/src/dbinc_auto/ext_185_prot.in"
|
|
fi
|
|
fi
|
|
|
|
if test "$db_cv_stl" = "yes"; then
|
|
- CREATE_LIST="$CREATE_LIST
|
|
+ CREATE_LIST="$CREATE_LIST \
|
|
dbstl_common.h:$topdir/lang/cxx/stl/dbstl_common.in"
|
|
fi
|
|
|