Commit 4b77a07c authored by unknown's avatar unknown
Browse files

Cleanup after import of BDB


BitKeeper/deleted/.del-mutex.c~f6a0db232d63dba7:
  Delete: storage/bdb/mutex/mutex.c
storage/bdb/dbinc/db.in:
  Add DBT->app_private
storage/bdb/dist/configure.ac:
  Skip tcl stuff
storage/bdb/dist/s_all:
  Skip setup we don't need to do
storage/bdb/dist/s_include:
  Skip excluded directories
storage/bdb/dist/s_perm:
  Skip excluded directories
storage/bdb/dist/s_recover:
  Skip excluded directories
storage/bdb/dist/s_symlink:
  Skip excluded directories
parent fe5c29ed
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -174,6 +174,8 @@ struct __db_dbt {
	u_int32_t dlen;			/* RO: get/put record length. */
	u_int32_t doff;			/* RO: get/put record offset. */

	void	*app_private;		/* Application-private handle. */

#define	DB_DBT_APPMALLOC	0x001	/* Callback allocated memory. */
#define	DB_DBT_ISSET		0x002	/* Lower level calls set value. */
#define	DB_DBT_MALLOC		0x004	/* Return in malloc'd memory. */
+1 −2
Original line number Diff line number Diff line
@@ -707,8 +707,7 @@ AC_SUBST(LTLIBOBJS)
# Initial output file list.
CREATE_LIST="Makefile
    db_cxx.h:$srcdir/../dbinc/db_cxx.in
    db_int.h:$srcdir/../dbinc/db_int.in
    include.tcl:$srcdir/../test/include.tcl"
    db_int.h:$srcdir/../dbinc/db_int.in"

# MinGW needs win_db.h.
if test "$db_cv_mingw" = "yes"; then
+5 −5
Original line number Diff line number Diff line
@@ -10,12 +10,12 @@ sh s_readme # distribution README file.
#
sh s_config		# autoconf.
sh s_recover		# logging/recovery files.
sh s_rpc		# RPC files.
#sh s_rpc		# RPC files.
sh s_include		# standard include files.

sh s_win32		# Win32 include files.
sh s_win32_dsp		# Win32 build environment.
sh s_vxworks		# VxWorks include files.
sh s_java		# Java support.
sh s_test		# Test suite support.
sh s_tags		# Tags files.
#sh s_vxworks		# VxWorks include files.
#sh s_java		# Java support.
#sh s_test		# Test suite support.
#sh s_tags		# Tags files.
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ head defonly _DB_INT_DEF_IN_ > $i_dfile
# Process the standard directories, creating per-directory prototype
# files and adding to the external prototype and #define files.
for i in db btree clib common crypto dbreg env fileops hash hmac \
    lock log mp mutex os qam rep rpc_client rpc_server sequence tcl txn xa; do
    lock log mp mutex os qam rep sequence txn xa; do
	head "_${i}_ext_h_" > $i_pfile

	if [ $i = os ] ; then
+7 −7
Original line number Diff line number Diff line
@@ -39,13 +39,13 @@ run dist/s_vxworks 555
run dist/s_win32 555
run dist/s_win32_dsp 555
run dist/vx_buildcd 555
run mod_db4/configure 555
#run mod_db4/configure 555

run perl/BerkeleyDB/dbinfo 555
run perl/BerkeleyDB/mkpod 555
#run perl/BerkeleyDB/dbinfo 555
#run perl/BerkeleyDB/mkpod 555

for i in `cd $d && find build_vxworks \
    -name '*.wsp' -o -name '*.cdf' -o -name '*.wpj'`; do
#for i in `cd $d && find build_vxworks \
#    -name '*.wsp' -o -name '*.cdf' -o -name '*.wpj'`; do
	#echo "	$i (775)"
	chmod 775 $d/$i
done
#	chmod 775 $d/$i
#done
Loading