Release 5.3.21 5/11/2012

This commit is contained in:
Gregory Burd 2012-11-14 16:35:20 -05:00
parent 107237b8e5
commit 3c9dfcc449
7556 changed files with 161424 additions and 69607 deletions

View file

@ -9,7 +9,7 @@ please contact Oracle at berkeleydb-info_us@oracle.com.
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
/*
* Copyright (c) 1990, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1990, 2012 Oracle and/or its affiliates. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions

2
README
View file

@ -1,4 +1,4 @@
Berkeley DB 11g Release 2, library version 11.2.5.2.36: (September 14, 2011)
Berkeley DB 11g Release 2, library version 11.2.5.3.21: (May 11, 2012)
This is Berkeley DB 11g Release 2 from Oracle. To view release and
installation documentation, load the distribution file docs/index.html

View file

@ -1,6 +1,6 @@
# DO NOT EDIT: automatically built by dist/s_android.
# Makefile for building a drop-in replacement of SQLite using
# Berkeley DB 11g Release 2, library version 11.2.5.2.36: (September 14, 2011)
# Berkeley DB 11g Release 2, library version 11.2.5.3.21: (May 11, 2012)
###################################################################
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
@ -10,7 +10,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE := libsqlite
# BDB_TOP will change with release numbers
BDB_TOP := db-5.2.36
BDB_TOP := db-5.3.21
BDB_PATH := $(LOCAL_PATH)/$(BDB_TOP)/src
# This directive results in arm (vs thumb) code. It's necessary to
@ -65,6 +65,7 @@ LOCAL_SRC_FILES := \
$(BDB_TOP)/src/db/db.c \
$(BDB_TOP)/src/db/db_am.c \
$(BDB_TOP)/src/db/db_auto.c \
$(BDB_TOP)/src/db/db_backup.c \
$(BDB_TOP)/src/db/db_cam.c \
$(BDB_TOP)/src/db/db_cds.c \
$(BDB_TOP)/src/db/db_compact.c \
@ -99,6 +100,7 @@ LOCAL_SRC_FILES := \
$(BDB_TOP)/src/dbreg/dbreg_stat.c \
$(BDB_TOP)/src/dbreg/dbreg_util.c \
$(BDB_TOP)/src/env/env_alloc.c \
$(BDB_TOP)/src/env/env_backup.c \
$(BDB_TOP)/src/env/env_config.c \
$(BDB_TOP)/src/env/env_failchk.c \
$(BDB_TOP)/src/env/env_file.c \
@ -141,6 +143,7 @@ LOCAL_SRC_FILES := \
$(BDB_TOP)/src/log/log_stat.c \
$(BDB_TOP)/src/log/log_verify_stub.c \
$(BDB_TOP)/src/mp/mp_alloc.c \
$(BDB_TOP)/src/mp/mp_backup.c \
$(BDB_TOP)/src/mp/mp_bh.c \
$(BDB_TOP)/src/mp/mp_fget.c \
$(BDB_TOP)/src/mp/mp_fmethod.c \
@ -178,6 +181,7 @@ LOCAL_SRC_FILES := \
$(BDB_TOP)/src/os/os_map.c \
$(BDB_TOP)/src/os/os_mkdir.c \
$(BDB_TOP)/src/os/os_open.c \
$(BDB_TOP)/src/os/os_path.c \
$(BDB_TOP)/src/os/os_pid.c \
$(BDB_TOP)/src/os/os_rename.c \
$(BDB_TOP)/src/os/os_root.c \

View file

@ -2,7 +2,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*
@ -45,10 +45,10 @@ extern "C" {
#define DB_VERSION_FAMILY 11
#define DB_VERSION_RELEASE 2
#define DB_VERSION_MAJOR 5
#define DB_VERSION_MINOR 2
#define DB_VERSION_PATCH 36
#define DB_VERSION_STRING "Berkeley DB 5.2.36: (September 14, 2011)"
#define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library version 11.2.5.2.36: (September 14, 2011)"
#define DB_VERSION_MINOR 3
#define DB_VERSION_PATCH 21
#define DB_VERSION_STRING "Berkeley DB 5.3.21: (May 11, 2012)"
#define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library version 11.2.5.3.21: (May 11, 2012)"
/*
* !!!
@ -457,10 +457,10 @@ struct __db_lockreq {
/*******************************************************
* Logging.
*******************************************************/
#define DB_LOGVERSION 18 /* Current log version. */
#define DB_LOGVERSION_LATCHING 15 /* Log version using latching. */
#define DB_LOGCHKSUM 12 /* Check sum headers. */
#define DB_LOGOLDVER 8 /* Oldest log version supported. */
#define DB_LOGVERSION 19 /* Current log version. */
#define DB_LOGVERSION_LATCHING 15 /* Log version using latching: db-4.8 */
#define DB_LOGCHKSUM 12 /* Check sum headers: db-4.5 */
#define DB_LOGOLDVER 8 /* Oldest version supported: db-4.2 */
#define DB_LOGMAGIC 0x040988
/*
@ -533,7 +533,7 @@ struct __db_log_stat { /* SHARED */
u_int32_t st_lg_size; /* Log file size. */
u_int32_t st_wc_bytes; /* Bytes to log since checkpoint. */
u_int32_t st_wc_mbytes; /* Megabytes to log since checkpoint. */
u_int32_t st_fileid_init; /* Inital allocation for fileids. */
u_int32_t st_fileid_init; /* Initial allocation for fileids. */
#ifndef __TEST_DB_NO_STATISTICS
u_int32_t st_nfileid; /* Current number of fileids. */
u_int32_t st_maxnfileid; /* Maximum number of fileids used. */
@ -696,11 +696,12 @@ struct __db_mpoolfile {
* multiple threads of control.
*/
#define MP_FILEID_SET 0x001 /* Application supplied a file ID. */
#define MP_FLUSH 0x002 /* Was opened to flush a buffer. */
#define MP_MULTIVERSION 0x004 /* Opened for multiversion access. */
#define MP_OPEN_CALLED 0x008 /* File opened. */
#define MP_READONLY 0x010 /* File is readonly. */
#define MP_DUMMY 0x020 /* File is dummy for __memp_fput. */
#define MP_FLUSH 0x002 /* Was used to flush a buffer. */
#define MP_FOR_FLUSH 0x004 /* Was opened to flush a buffer. */
#define MP_MULTIVERSION 0x008 /* Opened for multiversion access. */
#define MP_OPEN_CALLED 0x010 /* File opened. */
#define MP_READONLY 0x020 /* File is readonly. */
#define MP_DUMMY 0x040 /* File is dummy for __memp_fput. */
u_int32_t flags;
};
@ -768,6 +769,7 @@ struct __db_mpool_fstat {
uintmax_t st_page_create; /* Pages created in the cache. */
uintmax_t st_page_in; /* Pages read in. */
uintmax_t st_page_out; /* Pages written out. */
uintmax_t st_backup_spins; /* Number of spins during a copy. */
#endif
char *file_name; /* File name. */
};
@ -1387,18 +1389,19 @@ typedef enum {
/* DB (private) error return codes. */
#define DB_ALREADY_ABORTED (-30899)
#define DB_DELETED (-30898)/* Recovery file marked deleted. */
#define DB_EVENT_NOT_HANDLED (-30897)/* Forward event to application. */
#define DB_NEEDSPLIT (-30896)/* Page needs to be split. */
#define DB_REP_BULKOVF (-30895)/* Rep bulk buffer overflow. */
#define DB_REP_LOGREADY (-30894)/* Rep log ready for recovery. */
#define DB_REP_NEWMASTER (-30893)/* We have learned of a new master. */
#define DB_REP_PAGEDONE (-30892)/* This page was already done. */
#define DB_SURPRISE_KID (-30891)/* Child commit where parent
#define DB_CHKSUM_FAIL (-30898)/* Checksum failed. */
#define DB_DELETED (-30897)/* Recovery file marked deleted. */
#define DB_EVENT_NOT_HANDLED (-30896)/* Forward event to application. */
#define DB_NEEDSPLIT (-30895)/* Page needs to be split. */
#define DB_REP_BULKOVF (-30894)/* Rep bulk buffer overflow. */
#define DB_REP_LOGREADY (-30893)/* Rep log ready for recovery. */
#define DB_REP_NEWMASTER (-30892)/* We have learned of a new master. */
#define DB_REP_PAGEDONE (-30891)/* This page was already done. */
#define DB_SURPRISE_KID (-30890)/* Child commit where parent
didn't know it was a parent. */
#define DB_SWAPBYTES (-30890)/* Database needs byte swapping. */
#define DB_TXN_CKP (-30889)/* Encountered ckp record in log. */
#define DB_VERIFY_FATAL (-30888)/* DB->verify cannot proceed. */
#define DB_SWAPBYTES (-30889)/* Database needs byte swapping. */
#define DB_TXN_CKP (-30888)/* Encountered ckp record in log. */
#define DB_VERIFY_FATAL (-30887)/* DB->verify cannot proceed. */
/* Database handle. */
struct __db {
@ -1638,6 +1641,8 @@ struct __db {
__P((DB *, u_int32_t (**)(DB *, const void *, u_int32_t)));
int (*get_h_nelem) __P((DB *, u_int32_t *));
int (*get_heapsize) __P((DB *, u_int32_t *, u_int32_t *));
int (*get_heap_regionsize) __P((DB *, u_int32_t *));
int (*get_lk_exclusive) __P((DB *, int *, int *));
int (*get_lorder) __P((DB *, int *));
DB_MPOOLFILE *(*get_mpf) __P((DB *));
void (*get_msgcall) __P((DB *,
@ -1697,6 +1702,8 @@ struct __db {
__P((DB *, u_int32_t (*)(DB *, const void *, u_int32_t)));
int (*set_h_nelem) __P((DB *, u_int32_t));
int (*set_heapsize) __P((DB *, u_int32_t, u_int32_t, u_int32_t));
int (*set_heap_regionsize) __P((DB *, u_int32_t));
int (*set_lk_exclusive) __P((DB *, int));
int (*set_lorder) __P((DB *, int));
void (*set_msgcall) __P((DB *, void (*)(const DB_ENV *, const char *)));
void (*set_msgfile) __P((DB *, FILE *));
@ -1772,21 +1779,28 @@ struct __db {
#define DB_AM_NOT_DURABLE 0x00008000 /* Do not log changes */
#define DB_AM_OPEN_CALLED 0x00010000 /* DB->open called */
#define DB_AM_PAD 0x00020000 /* Fixed-length record pad */
#define DB_AM_PGDEF 0x00040000 /* Page size was defaulted */
#define DB_AM_RDONLY 0x00080000 /* Database is readonly */
#define DB_AM_READ_UNCOMMITTED 0x00100000 /* Support degree 1 isolation */
#define DB_AM_RECNUM 0x00200000 /* DB_RECNUM */
#define DB_AM_RECOVER 0x00400000 /* DB opened by recovery routine */
#define DB_AM_RENUMBER 0x00800000 /* DB_RENUMBER */
#define DB_AM_REVSPLITOFF 0x01000000 /* DB_REVSPLITOFF */
#define DB_AM_SECONDARY 0x02000000 /* Database is a secondary index */
#define DB_AM_SNAPSHOT 0x04000000 /* DB_SNAPSHOT */
#define DB_AM_SUBDB 0x08000000 /* Subdatabases supported */
#define DB_AM_SWAP 0x10000000 /* Pages need to be byte-swapped */
#define DB_AM_TXN 0x20000000 /* Opened in a transaction */
#define DB_AM_VERIFYING 0x40000000 /* DB handle is in the verifier */
#define DB_AM_PARTDB 0x00040000 /* Handle for a database partition */
#define DB_AM_PGDEF 0x00080000 /* Page size was defaulted */
#define DB_AM_RDONLY 0x00100000 /* Database is readonly */
#define DB_AM_READ_UNCOMMITTED 0x00200000 /* Support degree 1 isolation */
#define DB_AM_RECNUM 0x00400000 /* DB_RECNUM */
#define DB_AM_RECOVER 0x00800000 /* DB opened by recovery routine */
#define DB_AM_RENUMBER 0x01000000 /* DB_RENUMBER */
#define DB_AM_REVSPLITOFF 0x02000000 /* DB_REVSPLITOFF */
#define DB_AM_SECONDARY 0x04000000 /* Database is a secondary index */
#define DB_AM_SNAPSHOT 0x08000000 /* DB_SNAPSHOT */
#define DB_AM_SUBDB 0x10000000 /* Subdatabases supported */
#define DB_AM_SWAP 0x20000000 /* Pages need to be byte-swapped */
#define DB_AM_TXN 0x40000000 /* Opened in a transaction */
#define DB_AM_VERIFYING 0x80000000 /* DB handle is in the verifier */
u_int32_t orig_flags; /* Flags at open, for refresh */
u_int32_t flags;
#define DB2_AM_EXCL 0x00000001 /* Exclusively lock the handle */
#define DB2_AM_INTEXCL 0x00000002 /* Internal exclusive lock. */
#define DB2_AM_NOWAIT 0x00000004 /* Do not wait for handle lock */
u_int32_t orig_flags2; /* Second flags word; for refresh */
u_int32_t flags2; /* Second flags word */
};
/*
@ -2186,6 +2200,7 @@ struct __db_heap_stat { /* SHARED */
u_int32_t heap_pagecnt; /* Page count. */
u_int32_t heap_pagesize; /* Page size. */
u_int32_t heap_nregions; /* Number of regions. */
u_int32_t heap_regionsize; /* Number of pages in a region. */
};
/* Queue statistics structure. */
@ -2236,6 +2251,16 @@ typedef enum {
DB_MEM_THREAD=6
} DB_MEM_CONFIG;
/*
* Backup configuration types.
*/
typedef enum {
DB_BACKUP_READ_COUNT = 1,
DB_BACKUP_READ_SLEEP = 2,
DB_BACKUP_SIZE = 3,
DB_BACKUP_WRITE_DIRECT = 4
} DB_BACKUP_CONFIG;
struct __db_env {
ENV *env; /* Linked ENV structure */
@ -2268,6 +2293,7 @@ struct __db_env {
/* Application specified paths */
char *db_log_dir; /* Database log file directory */
char *db_md_dir; /* Persistent metadata directory */
char *db_tmp_dir; /* Database tmp file directory */
char *db_create_dir; /* Create directory for data files */
@ -2382,8 +2408,10 @@ struct __db_env {
/* DB_ENV PUBLIC HANDLE LIST BEGIN */
int (*add_data_dir) __P((DB_ENV *, const char *));
int (*backup) __P((DB_ENV *, const char *, u_int32_t));
int (*cdsgroup_begin) __P((DB_ENV *, DB_TXN **));
int (*close) __P((DB_ENV *, u_int32_t));
int (*dbbackup) __P((DB_ENV *, const char *, const char *, u_int32_t));
int (*dbremove) __P((DB_ENV *,
DB_TXN *, const char *, const char *, u_int32_t));
int (*dbrename) __P((DB_ENV *,
@ -2401,6 +2429,11 @@ struct __db_env {
int (*get_create_dir) __P((DB_ENV *, const char **));
int (*get_data_dirs) __P((DB_ENV *, const char ***));
int (*get_data_len) __P((DB_ENV *, u_int32_t *));
int (*get_backup_callbacks) __P((DB_ENV *,
int (**)(DB_ENV *, const char *, const char *, void **),
int (**)(DB_ENV *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *),
int (**)(DB_ENV *, const char *, void *)));
int (*get_backup_config) __P((DB_ENV *, DB_BACKUP_CONFIG, u_int32_t *));
int (*get_encrypt_flags) __P((DB_ENV *, u_int32_t *));
void (*get_errcall) __P((DB_ENV *,
void (**)(const DB_ENV *, const char *, const char *)));
@ -2427,6 +2460,7 @@ struct __db_env {
int (*get_lk_tablesize) __P((DB_ENV *, u_int32_t *));
int (*get_memory_init) __P((DB_ENV *, DB_MEM_CONFIG, u_int32_t *));
int (*get_memory_max) __P((DB_ENV *, u_int32_t *, u_int32_t *));
int (*get_metadata_dir) __P((DB_ENV *, const char **));
int (*get_mp_max_openfd) __P((DB_ENV *, int *));
int (*get_mp_max_write) __P((DB_ENV *, int *, db_timeout_t *));
int (*get_mp_mmapsize) __P((DB_ENV *, size_t *));
@ -2549,6 +2583,12 @@ struct __db_env {
int (*set_create_dir) __P((DB_ENV *, const char *));
int (*set_data_dir) __P((DB_ENV *, const char *));
int (*set_data_len) __P((DB_ENV *, u_int32_t));
int (*set_backup_callbacks) __P((DB_ENV *,
int (*)(DB_ENV *, const char *, const char *, void **),
int (*)(DB_ENV *, u_int32_t,
u_int32_t, u_int32_t, u_int8_t *, void *),
int (*)(DB_ENV *, const char *, void *)));
int (*set_backup_config) __P((DB_ENV *, DB_BACKUP_CONFIG, u_int32_t));
int (*set_encrypt) __P((DB_ENV *, const char *, u_int32_t));
void (*set_errcall) __P((DB_ENV *,
void (*)(const DB_ENV *, const char *, const char *)));
@ -2576,6 +2616,7 @@ struct __db_env {
int (*set_lk_tablesize) __P((DB_ENV *, u_int32_t));
int (*set_memory_init) __P((DB_ENV *, DB_MEM_CONFIG, u_int32_t));
int (*set_memory_max) __P((DB_ENV *, u_int32_t, u_int32_t));
int (*set_metadata_dir) __P((DB_ENV *, const char *));
int (*set_mp_max_openfd) __P((DB_ENV *, int));
int (*set_mp_max_write) __P((DB_ENV *, int, db_timeout_t));
int (*set_mp_mmapsize) __P((DB_ENV *, size_t));
@ -2761,30 +2802,35 @@ typedef struct entry {
#define DB_ARCH_LOG 0x00000004
#define DB_ARCH_REMOVE 0x00000008
#define DB_AUTO_COMMIT 0x00000100
#define DB_BACKUP_CLEAN 0x00000002
#define DB_BACKUP_FILES 0x00000008
#define DB_BACKUP_NO_LOGS 0x00000010
#define DB_BACKUP_SINGLE_DIR 0x00000020
#define DB_BACKUP_UPDATE 0x00000040
#define DB_BOOTSTRAP_HELPER 0x00000001
#define DB_CDB_ALLDB 0x00000040
#define DB_CHKSUM 0x00000008
#define DB_CKP_INTERNAL 0x00000002
#define DB_CREATE 0x00000001
#define DB_CURSOR_BULK 0x00000001
#define DB_CURSOR_TRANSIENT 0x00000004
#define DB_CURSOR_TRANSIENT 0x00000008
#define DB_CXX_NO_EXCEPTIONS 0x00000002
#define DB_DATABASE_LOCKING 0x00000080
#define DB_DIRECT 0x00000010
#define DB_DIRECT 0x00000020
#define DB_DIRECT_DB 0x00000200
#define DB_DSYNC_DB 0x00000400
#define DB_DUP 0x00000010
#define DB_DUPSORT 0x00000004
#define DB_DURABLE_UNKNOWN 0x00000020
#define DB_DUPSORT 0x00000002
#define DB_DURABLE_UNKNOWN 0x00000040
#define DB_ENCRYPT 0x00000001
#define DB_ENCRYPT_AES 0x00000001
#define DB_EXCL 0x00000040
#define DB_EXTENT 0x00000040
#define DB_FAILCHK 0x00000020
#define DB_EXCL 0x00000004
#define DB_EXTENT 0x00000100
#define DB_FAILCHK 0x00000010
#define DB_FAILCHK_ISALIVE 0x00000040
#define DB_FAST_STAT 0x00000001
#define DB_FCNTL_LOCKING 0x00000800
#define DB_FLUSH 0x00000001
#define DB_FLUSH 0x00000002
#define DB_FORCE 0x00000001
#define DB_FORCESYNC 0x00000001
#define DB_FOREIGN_ABORT 0x00000001
@ -2804,26 +2850,28 @@ typedef struct entry {
#define DB_INIT_REP 0x00001000
#define DB_INIT_TXN 0x00002000
#define DB_INORDER 0x00000020
#define DB_INTERNAL_DB 0x00001000
#define DB_INTERNAL_PERSISTENT_DB 0x00001000
#define DB_INTERNAL_TEMPORARY_DB 0x00002000
#define DB_JOIN_NOSORT 0x00000001
#define DB_LEGACY 0x00000004
#define DB_LOCAL_SITE 0x00000008
#define DB_LOCKDOWN 0x00004000
#define DB_LOCK_CHECK 0x00000001
#define DB_LOCK_NOWAIT 0x00000002
#define DB_LOCK_RECORD 0x00000004
#define DB_LOCK_SET_TIMEOUT 0x00000008
#define DB_LOCK_SWITCH 0x00000010
#define DB_LOCK_UPGRADE 0x00000020
#define DB_LOCK_IGNORE_REC 0x00000002
#define DB_LOCK_NOWAIT 0x00000004
#define DB_LOCK_RECORD 0x00000008
#define DB_LOCK_SET_TIMEOUT 0x00000010
#define DB_LOCK_SWITCH 0x00000020
#define DB_LOCK_UPGRADE 0x00000040
#define DB_LOG_AUTO_REMOVE 0x00000001
#define DB_LOG_CHKPNT 0x00000002
#define DB_LOG_CHKPNT 0x00000001
#define DB_LOG_COMMIT 0x00000004
#define DB_LOG_DIRECT 0x00000002
#define DB_LOG_DSYNC 0x00000004
#define DB_LOG_IN_MEMORY 0x00000008
#define DB_LOG_NOCOPY 0x00000008
#define DB_LOG_NOT_DURABLE 0x00000010
#define DB_LOG_NO_DATA 0x00000004
#define DB_LOG_NO_DATA 0x00000002
#define DB_LOG_VERIFY_CAF 0x00000001
#define DB_LOG_VERIFY_DBFILE 0x00000002
#define DB_LOG_VERIFY_ERR 0x00000004
@ -2842,26 +2890,26 @@ typedef struct entry {
#define DB_MPOOL_LAST 0x00000010
#define DB_MPOOL_NEW 0x00000020
#define DB_MPOOL_NOFILE 0x00000001
#define DB_MPOOL_NOLOCK 0x00000002
#define DB_MPOOL_NOLOCK 0x00000004
#define DB_MPOOL_TRY 0x00000040
#define DB_MPOOL_UNLINK 0x00000002
#define DB_MULTIPLE 0x00000800
#define DB_MULTIPLE_KEY 0x00004000
#define DB_MULTIVERSION 0x00000004
#define DB_MULTIVERSION 0x00000008
#define DB_MUTEX_ALLOCATED 0x00000001
#define DB_MUTEX_LOCKED 0x00000002
#define DB_MUTEX_LOGICAL_LOCK 0x00000004
#define DB_MUTEX_PROCESS_ONLY 0x00000008
#define DB_MUTEX_SELF_BLOCK 0x00000010
#define DB_MUTEX_SHARED 0x00000020
#define DB_NOERROR 0x00002000
#define DB_NOERROR 0x00004000
#define DB_NOFLUSH 0x00001000
#define DB_NOLOCKING 0x00002000
#define DB_NOMMAP 0x00000008
#define DB_NOMMAP 0x00000010
#define DB_NOORDERCHK 0x00000002
#define DB_NOPANIC 0x00004000
#define DB_NOSYNC 0x00000001
#define DB_NO_AUTO_COMMIT 0x00004000
#define DB_NO_AUTO_COMMIT 0x00008000
#define DB_NO_CHECKPOINT 0x00008000
#define DB_ODDFILESIZE 0x00000080
#define DB_ORDERCHKONLY 0x00000004
@ -2872,7 +2920,7 @@ typedef struct entry {
#define DB_PR_PAGE 0x00000010
#define DB_PR_RECOVERYTEST 0x00000020
#define DB_RDONLY 0x00000400
#define DB_RDWRMASTER 0x00008000
#define DB_RDWRMASTER 0x00010000
#define DB_READ_COMMITTED 0x00000400
#define DB_READ_UNCOMMITTED 0x00000200
#define DB_RECNUM 0x00000040
@ -2935,43 +2983,44 @@ typedef struct entry {
#define DB_ST_RELEN 0x00008000
#define DB_ST_TOPLEVEL 0x00010000
#define DB_SYSTEM_MEM 0x00080000
#define DB_THREAD 0x00000010
#define DB_THREAD 0x00000020
#define DB_TIME_NOTGRANTED 0x00040000
#define DB_TRUNCATE 0x00010000
#define DB_TXN_BULK 0x00000008
#define DB_TRUNCATE 0x00020000
#define DB_TXN_BULK 0x00000010
#define DB_TXN_FAMILY 0x00000040
#define DB_TXN_NOSYNC 0x00000001
#define DB_TXN_NOT_DURABLE 0x00000002
#define DB_TXN_NOT_DURABLE 0x00000004
#define DB_TXN_NOWAIT 0x00000002
#define DB_TXN_SNAPSHOT 0x00000010
#define DB_TXN_SYNC 0x00000004
#define DB_TXN_SNAPSHOT 0x00000004
#define DB_TXN_SYNC 0x00000008
#define DB_TXN_WAIT 0x00000080
#define DB_TXN_WRITE_NOSYNC 0x00000020
#define DB_UNREF 0x00020000
#define DB_UPGRADE 0x00000001
#define DB_USE_ENVIRON 0x00000004
#define DB_USE_ENVIRON_ROOT 0x00000008
#define DB_VERB_DEADLOCK 0x00000001
#define DB_VERB_FILEOPS 0x00000002
#define DB_VERB_FILEOPS_ALL 0x00000004
#define DB_VERB_RECOVERY 0x00000008
#define DB_VERB_REGISTER 0x00000010
#define DB_VERB_REPLICATION 0x00000020
#define DB_VERB_REPMGR_CONNFAIL 0x00000040
#define DB_VERB_REPMGR_MISC 0x00000080
#define DB_VERB_REP_ELECT 0x00000100
#define DB_VERB_REP_LEASE 0x00000200
#define DB_VERB_REP_MISC 0x00000400
#define DB_VERB_REP_MSGS 0x00000800
#define DB_VERB_REP_SYNC 0x00001000
#define DB_VERB_REP_SYSTEM 0x00002000
#define DB_VERB_REP_TEST 0x00004000
#define DB_VERB_WAITSFOR 0x00008000
#define DB_VERB_BACKUP 0x00000001
#define DB_VERB_DEADLOCK 0x00000002
#define DB_VERB_FILEOPS 0x00000004
#define DB_VERB_FILEOPS_ALL 0x00000008
#define DB_VERB_RECOVERY 0x00000010
#define DB_VERB_REGISTER 0x00000020
#define DB_VERB_REPLICATION 0x00000040
#define DB_VERB_REPMGR_CONNFAIL 0x00000080
#define DB_VERB_REPMGR_MISC 0x00000100
#define DB_VERB_REP_ELECT 0x00000200
#define DB_VERB_REP_LEASE 0x00000400
#define DB_VERB_REP_MISC 0x00000800
#define DB_VERB_REP_MSGS 0x00001000
#define DB_VERB_REP_SYNC 0x00002000
#define DB_VERB_REP_SYSTEM 0x00004000
#define DB_VERB_REP_TEST 0x00008000
#define DB_VERB_WAITSFOR 0x00010000
#define DB_VERIFY 0x00000002
#define DB_VERIFY_PARTITION 0x00040000
#define DB_WRITECURSOR 0x00000008
#define DB_WRITECURSOR 0x00000010
#define DB_WRITELOCK 0x00000020
#define DB_WRITEOPEN 0x00020000
#define DB_WRITEOPEN 0x00040000
#define DB_XA_CREATE 0x00000001
#define DB_YIELDCPU 0x00080000

View file

@ -35,6 +35,9 @@
/* Define to 1 if you have the `atol' function. */
#define HAVE_ATOL 1
/* Define to 1 if platform reads and writes files atomically. */
/* #undef HAVE_ATOMICFILEREAD */
/* Define to 1 to use Solaris library routes for atomic operations. */
/* #undef HAVE_ATOMIC_SOLARIS */
@ -557,16 +560,16 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 5.2.36"
#define PACKAGE_STRING "Berkeley DB 5.3.21"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-5.2.36"
#define PACKAGE_TARNAME "db-5.3.21"
/* Define to the home page for this package. */
#define PACKAGE_URL "http://www.oracle.com/technology/software/products/berkeley-db/index.html"
/* Define to the version of this package. */
#define PACKAGE_VERSION "5.2.36"
#define PACKAGE_VERSION "5.3.21"
/* The size of `char', as computed by sizeof. */
#define SIZEOF_CHAR 1

View file

@ -2,7 +2,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -263,6 +263,9 @@ typedef struct __fn {
#define F_CLR(p, f) (p)->flags &= ~(f)
#define F_ISSET(p, f) ((p)->flags & (f))
#define F_SET(p, f) (p)->flags |= (f)
#define F2_CLR(p, f) ((p)->flags2 &= ~(f))
#define F2_ISSET(p, f) ((p)->flags2 & (f))
#define F2_SET(p, f) ((p)->flags2 |= (f))
#define LF_CLR(f) ((flags) &= ~(f))
#define LF_ISSET(f) ((flags) & (f))
#define LF_SET(f) ((flags) |= (f))
@ -336,6 +339,12 @@ typedef struct __fn {
#define STAT_SET_VERB(env, cat, subcat, val, newval, id1, id2) NOP_STATEMENT
#endif
#if defined HAVE_SIMPLE_THREAD_TYPE
#define DB_THREADID_INIT(t) COMPQUIET((t), 0)
#else
#define DB_THREADID_INIT(t) memset(&(t), 0, sizeof(t))
#endif
/*
* These macros are used when an error condition is first noticed. They allow
* one to be notified (via e.g. DTrace, SystemTap, ...) when an error occurs
@ -536,8 +545,9 @@ typedef enum {
DB_APP_NONE=0, /* No type (region). */
DB_APP_DATA, /* Data file. */
DB_APP_LOG, /* Log file. */
DB_APP_TMP, /* Temporary file. */
DB_APP_RECOVER /* We are in recovery. */
DB_APP_META, /* Persistent metadata file. */
DB_APP_RECOVER, /* We are in recovery. */
DB_APP_TMP /* Temporary file. */
} APPNAME;
/*
@ -738,6 +748,18 @@ typedef struct __flag_map {
u_int32_t inflag, outflag;
} FLAG_MAP;
typedef struct __db_backup_handle {
int (*open) __P((DB_ENV *, const char *, const char *, void **));
int (*write) __P((DB_ENV *,
u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *));
int (*close) __P((DB_ENV *, const char *, void *));
u_int32_t size;
u_int32_t read_count;
u_int32_t read_sleep;
#define BACKUP_WRITE_DIRECT 0x0001
int flags;
} DB_BACKUP;
/*
* Internal database environment structure.
*
@ -812,6 +834,8 @@ struct __env {
DB_REP *rep_handle; /* Replication handle */
DB_TXNMGR *tx_handle; /* Txn handle */
DB_BACKUP *backup_handle; /* database copy configuration. */
/*
* XA support.
*/

View file

@ -0,0 +1,345 @@
# DO NOT EDIT: automatically built by dist/s_android.
# Makefile for building Android.JDBC for DBSQL
# Berkeley DB 11g Release 2, library version 11.2.5.3.21: (May 11, 2012)
#
# This Makefile will generate 3 files:
# 1. Static libdb_sql library. An internal library and users don't
# need it. Just as the base of below two compontents.
# 2. Shared Android.JDBC (.so) file.
# 3. DBSQL shell. Staticed linking. So that users can use it on
# Android directly.
###################################################################
LOCAL_PATH := $(call my-dir)
###################################################################
# Common variables
###################################################################
BDB_TOP := ../../..
BDB_PATH := $(LOCAL_PATH)/$(BDB_TOP)
# Common include paths
COMMON_C_INCLUDES := $(BDB_PATH)/build_android $(BDB_PATH)/src \
$(BDB_PATH)/build_android/sql $(BDB_PATH)/lang/sql/generated
#
# flags -- most of these are from the SQLite build, some are not.
# Here are some that may be changed for tuning or behavior:
# SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT -- default size of BDB log file in bytes
# SQLITE_DEFAULT_PAGE_SIZE -- explicit control over page size for cache
# and databases
# SQLITE_DEFAULT_CACHE_SIZE -- sizes the BDB cache, in pages
# BDBSQL_SHARE_PRIVATE -- uses private environments but still shares databases
# among processes using external synchronization.
# BDBSQL_CONVERT_SQLITE -- define this to convert SQLite databases to BDB SQL
# format -- this has other requirements so do not do this without consulting
# Oracle.
#
COMMON_CFLAGS := -Wall -DHAVE_USLEEP=1 \
-DSQLITE_DEFAULT_PAGE_SIZE=4096 \
-DSQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=524288 \
-DSQLITE_DEFAULT_CACHE_SIZE=128 \
-DSQLITE_THREADSAFE=1 -DNDEBUG=1 -DSQLITE_TEMP_STORE=3 \
-DSQLITE_OMIT_TRUNCATE_OPTIMIZATION -DSQLITE_OS_UNIX=1 \
-D_HAVE_SQLITE_CONFIG_H -DSQLITE_THREAD_OVERRIDE_LOCK=-1 \
-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_FTS3_BACKWARDS -Dfdatasync=fsync
# Required for JDBC building
# Most of these are from configured <db>/lang/sql/jdbc/Makefile.in
COMMON_CFLAGS += \
-DHAVE_SQLITE2=0 -DHAVE_SQLITE3=1 \
-DHAVE_SQLITE_FUNCTION_TYPE=0 \
-DHAVE_SQLITE_OPEN_AUX_FILE=0 \
-DHAVE_SQLITE_SET_AUTHORIZER=0 \
-DHAVE_SQLITE_TRACE=0 \
-DHAVE_SQLITE_COMPILE=0 \
-DHAVE_SQLITE_PROGRESS_HANDLER=0 \
-DHAVE_SQLITE3_MALLOC=1 \
-DHAVE_SQLITE3_PREPARE_V2=1 \
-DHAVE_SQLITE3_PREPARE16_V2=1 \
-DHAVE_SQLITE3_BIND_ZEROBLOB=1 \
-DHAVE_SQLITE3_CLEAR_BINDINGS=1 \
-DHAVE_SQLITE3_COLUMN_TABLE_NAME16=1 \
-DHAVE_SQLITE3_COLUMN_DATABASE_NAME16=1 \
-DHAVE_SQLITE3_COLUMN_ORIGIN_NAME16=1 \
-DHAVE_SQLITE3_BIND_PARAMETER_COUNT=1 \
-DHAVE_SQLITE3_BIND_PARAMETER_NAME=1 \
-DHAVE_SQLITE3_BIND_PARAMETER_INDEX=1 \
-DHAVE_SQLITE3_RESULT_ZEROBLOB=1 \
-DHAVE_SQLITE3_INCRBLOBIO=1 \
-DHAVE_SQLITE3_KEY=0 \
-DHAVE_SQLITE3_SHARED_CACHE=1 \
-DHAVE_SQLITE3_OPEN_V2=1 \
-DHAVE_SQLITE3_LOAD_EXTENSION=0 \
-DHAVE_SQLITE3_BACKUPAPI=1 \
-DHAVE_SQLITE3_PROFILE=1 \
-DHAVE_SQLITE3_STATUS=1 \
-DHAVE_SQLITE3_DB_STATUS=1 \
-DHAVE_SQLITE3_STMT_STATUS=1 \
-DCANT_PASS_VALIST_AS_CHARPTR=1 \
-DHAVE_ERRNO_H -DHAVE_SQLITE_CONFIG_H \
-DHAVE_SQLITE3_MALLOC -O3 -D_GNU_SOURCE -D_REENTRANT \
-DSQLITE_ENABLE_COLUMN_METADATA=1
################################################################################
# Build static library libdb_sql -- base of JDBC Driver and DBSQL shell
################################################################################
include $(CLEAR_VARS)
LOCAL_MODULE := libdb_sql_static
# This directive results in arm (vs thumb) code. It's necessary to
# allow some BDB assembler code (for mutexes) to compile.
LOCAL_ARM_MODE := arm
# Import common flags
LOCAL_C_INCLUDES += $(COMMON_C_INCLUDES)
LOCAL_CFLAGS += $(COMMON_CFLAGS)
# Source files
LOCAL_SRC_FILES := \
$(BDB_TOP)/src/btree/bt_compact.c \
$(BDB_TOP)/src/btree/bt_compare.c \
$(BDB_TOP)/src/btree/bt_compress.c \
$(BDB_TOP)/src/btree/bt_conv.c \
$(BDB_TOP)/src/btree/bt_curadj.c \
$(BDB_TOP)/src/btree/bt_cursor.c \
$(BDB_TOP)/src/btree/bt_delete.c \
$(BDB_TOP)/src/btree/bt_method.c \
$(BDB_TOP)/src/btree/bt_open.c \
$(BDB_TOP)/src/btree/bt_put.c \
$(BDB_TOP)/src/btree/bt_rec.c \
$(BDB_TOP)/src/btree/bt_reclaim.c \
$(BDB_TOP)/src/btree/bt_recno.c \
$(BDB_TOP)/src/btree/bt_rsearch.c \
$(BDB_TOP)/src/btree/bt_search.c \
$(BDB_TOP)/src/btree/bt_split.c \
$(BDB_TOP)/src/btree/bt_stat.c \
$(BDB_TOP)/src/btree/bt_upgrade.c \
$(BDB_TOP)/src/btree/btree_auto.c \
$(BDB_TOP)/src/clib/rand.c \
$(BDB_TOP)/src/clib/snprintf.c \
$(BDB_TOP)/src/common/clock.c \
$(BDB_TOP)/src/common/crypto_stub.c \
$(BDB_TOP)/src/common/db_byteorder.c \
$(BDB_TOP)/src/common/db_compint.c \
$(BDB_TOP)/src/common/db_err.c \
$(BDB_TOP)/src/common/db_getlong.c \
$(BDB_TOP)/src/common/db_idspace.c \
$(BDB_TOP)/src/common/db_log2.c \
$(BDB_TOP)/src/common/db_shash.c \
$(BDB_TOP)/src/common/dbt.c \
$(BDB_TOP)/src/common/mkpath.c \
$(BDB_TOP)/src/common/os_method.c \
$(BDB_TOP)/src/common/zerofill.c \
$(BDB_TOP)/src/db/crdel_auto.c \
$(BDB_TOP)/src/db/crdel_rec.c \
$(BDB_TOP)/src/db/db.c \
$(BDB_TOP)/src/db/db_am.c \
$(BDB_TOP)/src/db/db_auto.c \
$(BDB_TOP)/src/db/db_backup.c \
$(BDB_TOP)/src/db/db_cam.c \
$(BDB_TOP)/src/db/db_cds.c \
$(BDB_TOP)/src/db/db_compact.c \
$(BDB_TOP)/src/db/db_conv.c \
$(BDB_TOP)/src/db/db_copy.c \
$(BDB_TOP)/src/db/db_dispatch.c \
$(BDB_TOP)/src/db/db_dup.c \
$(BDB_TOP)/src/db/db_iface.c \
$(BDB_TOP)/src/db/db_join.c \
$(BDB_TOP)/src/db/db_meta.c \
$(BDB_TOP)/src/db/db_method.c \
$(BDB_TOP)/src/db/db_open.c \
$(BDB_TOP)/src/db/db_overflow.c \
$(BDB_TOP)/src/db/db_pr.c \
$(BDB_TOP)/src/db/db_rec.c \
$(BDB_TOP)/src/db/db_reclaim.c \
$(BDB_TOP)/src/db/db_remove.c \
$(BDB_TOP)/src/db/db_rename.c \
$(BDB_TOP)/src/db/db_ret.c \
$(BDB_TOP)/src/db/db_setid.c \
$(BDB_TOP)/src/db/db_setlsn.c \
$(BDB_TOP)/src/db/db_sort_multiple.c \
$(BDB_TOP)/src/db/db_stati.c \
$(BDB_TOP)/src/db/db_truncate.c \
$(BDB_TOP)/src/db/db_upg.c \
$(BDB_TOP)/src/db/db_upg_opd.c \
$(BDB_TOP)/src/db/db_vrfy_stub.c \
$(BDB_TOP)/src/db/partition.c \
$(BDB_TOP)/src/dbreg/dbreg.c \
$(BDB_TOP)/src/dbreg/dbreg_auto.c \
$(BDB_TOP)/src/dbreg/dbreg_rec.c \
$(BDB_TOP)/src/dbreg/dbreg_stat.c \
$(BDB_TOP)/src/dbreg/dbreg_util.c \
$(BDB_TOP)/src/env/env_alloc.c \
$(BDB_TOP)/src/env/env_backup.c \
$(BDB_TOP)/src/env/env_config.c \
$(BDB_TOP)/src/env/env_failchk.c \
$(BDB_TOP)/src/env/env_file.c \
$(BDB_TOP)/src/env/env_globals.c \
$(BDB_TOP)/src/env/env_method.c \
$(BDB_TOP)/src/env/env_name.c \
$(BDB_TOP)/src/env/env_open.c \
$(BDB_TOP)/src/env/env_recover.c \
$(BDB_TOP)/src/env/env_region.c \
$(BDB_TOP)/src/env/env_register.c \
$(BDB_TOP)/src/env/env_sig.c \
$(BDB_TOP)/src/env/env_stat.c \
$(BDB_TOP)/src/fileops/fileops_auto.c \
$(BDB_TOP)/src/fileops/fop_basic.c \
$(BDB_TOP)/src/fileops/fop_rec.c \
$(BDB_TOP)/src/fileops/fop_util.c \
$(BDB_TOP)/src/hash/hash_func.c \
$(BDB_TOP)/src/hash/hash_stub.c \
$(BDB_TOP)/src/heap/heap_stub.c \
$(BDB_TOP)/src/hmac/hmac.c \
$(BDB_TOP)/src/hmac/sha1.c \
$(BDB_TOP)/src/lock/lock.c \
$(BDB_TOP)/src/lock/lock_deadlock.c \
$(BDB_TOP)/src/lock/lock_failchk.c \
$(BDB_TOP)/src/lock/lock_id.c \
$(BDB_TOP)/src/lock/lock_list.c \
$(BDB_TOP)/src/lock/lock_method.c \
$(BDB_TOP)/src/lock/lock_region.c \
$(BDB_TOP)/src/lock/lock_stat.c \
$(BDB_TOP)/src/lock/lock_timer.c \
$(BDB_TOP)/src/lock/lock_util.c \
$(BDB_TOP)/src/log/log.c \
$(BDB_TOP)/src/log/log_archive.c \
$(BDB_TOP)/src/log/log_compare.c \
$(BDB_TOP)/src/log/log_debug.c \
$(BDB_TOP)/src/log/log_get.c \
$(BDB_TOP)/src/log/log_method.c \
$(BDB_TOP)/src/log/log_print.c \
$(BDB_TOP)/src/log/log_put.c \
$(BDB_TOP)/src/log/log_stat.c \
$(BDB_TOP)/src/log/log_verify_stub.c \
$(BDB_TOP)/src/mp/mp_alloc.c \
$(BDB_TOP)/src/mp/mp_backup.c \
$(BDB_TOP)/src/mp/mp_bh.c \
$(BDB_TOP)/src/mp/mp_fget.c \
$(BDB_TOP)/src/mp/mp_fmethod.c \
$(BDB_TOP)/src/mp/mp_fopen.c \
$(BDB_TOP)/src/mp/mp_fput.c \
$(BDB_TOP)/src/mp/mp_fset.c \
$(BDB_TOP)/src/mp/mp_method.c \
$(BDB_TOP)/src/mp/mp_mvcc.c \
$(BDB_TOP)/src/mp/mp_region.c \
$(BDB_TOP)/src/mp/mp_register.c \
$(BDB_TOP)/src/mp/mp_resize.c \
$(BDB_TOP)/src/mp/mp_stat.c \
$(BDB_TOP)/src/mp/mp_sync.c \
$(BDB_TOP)/src/mp/mp_trickle.c \
$(BDB_TOP)/src/mutex/mut_alloc.c \
$(BDB_TOP)/src/mutex/mut_failchk.c \
$(BDB_TOP)/src/mutex/mut_method.c \
$(BDB_TOP)/src/mutex/mut_region.c \
$(BDB_TOP)/src/mutex/mut_stat.c \
$(BDB_TOP)/src/mutex/mut_tas.c \
$(BDB_TOP)/src/os/os_abort.c \
$(BDB_TOP)/src/os/os_abs.c \
$(BDB_TOP)/src/os/os_alloc.c \
$(BDB_TOP)/src/os/os_clock.c \
$(BDB_TOP)/src/os/os_config.c \
$(BDB_TOP)/src/os/os_cpu.c \
$(BDB_TOP)/src/os/os_ctime.c \
$(BDB_TOP)/src/os/os_dir.c \
$(BDB_TOP)/src/os/os_errno.c \
$(BDB_TOP)/src/os/os_fid.c \
$(BDB_TOP)/src/os/os_flock.c \
$(BDB_TOP)/src/os/os_fsync.c \
$(BDB_TOP)/src/os/os_getenv.c \
$(BDB_TOP)/src/os/os_handle.c \
$(BDB_TOP)/src/os/os_map.c \
$(BDB_TOP)/src/os/os_mkdir.c \
$(BDB_TOP)/src/os/os_open.c \
$(BDB_TOP)/src/os/os_path.c \
$(BDB_TOP)/src/os/os_pid.c \
$(BDB_TOP)/src/os/os_rename.c \
$(BDB_TOP)/src/os/os_root.c \
$(BDB_TOP)/src/os/os_rpath.c \
$(BDB_TOP)/src/os/os_rw.c \
$(BDB_TOP)/src/os/os_seek.c \
$(BDB_TOP)/src/os/os_stack.c \
$(BDB_TOP)/src/os/os_stat.c \
$(BDB_TOP)/src/os/os_tmpdir.c \
$(BDB_TOP)/src/os/os_truncate.c \
$(BDB_TOP)/src/os/os_uid.c \
$(BDB_TOP)/src/os/os_unlink.c \
$(BDB_TOP)/src/os/os_yield.c \
$(BDB_TOP)/src/qam/qam_stub.c \
$(BDB_TOP)/src/rep/rep_stub.c \
$(BDB_TOP)/src/repmgr/repmgr_stub.c \
$(BDB_TOP)/src/sequence/seq_stat.c \
$(BDB_TOP)/src/sequence/sequence.c \
$(BDB_TOP)/src/txn/txn.c \
$(BDB_TOP)/src/txn/txn_auto.c \
$(BDB_TOP)/src/txn/txn_chkpt.c \
$(BDB_TOP)/src/txn/txn_failchk.c \
$(BDB_TOP)/src/txn/txn_method.c \
$(BDB_TOP)/src/txn/txn_rec.c \
$(BDB_TOP)/src/txn/txn_recover.c \
$(BDB_TOP)/src/txn/txn_region.c \
$(BDB_TOP)/src/txn/txn_stat.c \
$(BDB_TOP)/src/txn/txn_util.c \
$(BDB_TOP)/lang/sql/generated/sqlite3.c
ifneq ($(TARGET_ARCH),arm)
LOCAL_LDLIBS += -lpthread -ldl
endif
ifneq ($(TARGET_SIMULATOR),true)
LOCAL_SHARED_LIBRARIES := libdl
endif
LOCAL_C_INCLUDES += $(call include-path-for, system-core)/cutils
LOCAL_SHARED_LIBRARIES += liblog libicuuc libicui18n libutils
include $(BUILD_STATIC_LIBRARY)
################################################################################
# Build Android.JDBC shared library
################################################################################
include $(CLEAR_VARS)
LOCAL_MODULE := oracle-jdbc
LOCAL_ARM_MODE := arm
LOCAL_STATIC_LIBRARIES := libdb_sql_static # Based on above static library
LOCAL_SRC_FILES := $(BDB_TOP)/build_unix/jdbc/native/sqlite_jni.c
# Import common flags
LOCAL_C_INCLUDES += $(COMMON_C_INCLUDES)
LOCAL_CFLAGS += $(COMMON_CFLAGS)
# For Android.JDBC native code
LOCAL_C_INCLUDES += $(BDB_TOP)/build_unix/jdbc/native
include $(BUILD_SHARED_LIBRARY)
################################################################################
##device commande line tool: dbsql
################################################################################
ifneq ($(SDK_ONLY),true) # SDK doesn't need device version of dbsql
include $(CLEAR_VARS)
LOCAL_MODULE := dbsql
LOCAL_ARM_MODE := arm
LOCAL_STATIC_LIBRARIES := libdb_sql_static # Based on above static library
LOCAL_SRC_FILES := $(BDB_TOP)/lang/sql/sqlite/src/shell.c
# Import common flags
LOCAL_C_INCLUDES += $(COMMON_C_INCLUDES)
LOCAL_CFLAGS += $(COMMON_CFLAGS)
# Add flags for shell.c
LOCAL_CFLAGS += -DNO_ANDROID_FUNCS
ifneq ($(TARGET_ARCH),arm)
LOCAL_LDLIBS += -lpthread -ldl
endif
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := debug
include $(BUILD_EXECUTABLE)
endif # !SDK_ONLY

View file

@ -1167,6 +1167,24 @@ db_auto.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_objects
db_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_cam.c_dependDone
TRUE
<END>
@ -1815,6 +1833,24 @@ env_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_objects
env_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_config.c_dependDone
TRUE
<END>
@ -2409,6 +2445,24 @@ heap_autop.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_objects
heap_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap.c_dependDone
TRUE
<END>
@ -3021,6 +3075,24 @@ mp_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_objects
mp_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_bh.c_dependDone
TRUE
<END>
@ -3651,6 +3723,24 @@ os_open.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_objects
os_path.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_pid.c_dependDone
TRUE
<END>
@ -4801,6 +4891,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/db/db.c \
$(PRJ_DIR)/../src/db/db_am.c \
$(PRJ_DIR)/../src/db/db_auto.c \
$(PRJ_DIR)/../src/db/db_backup.c \
$(PRJ_DIR)/../src/db/db_cam.c \
$(PRJ_DIR)/../src/db/db_cds.c \
$(PRJ_DIR)/../src/db/db_compact.c \
@ -4837,6 +4928,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/dbreg/dbreg_stat.c \
$(PRJ_DIR)/../src/dbreg/dbreg_util.c \
$(PRJ_DIR)/../src/env/env_alloc.c \
$(PRJ_DIR)/../src/env/env_backup.c \
$(PRJ_DIR)/../src/env/env_config.c \
$(PRJ_DIR)/../src/env/env_failchk.c \
$(PRJ_DIR)/../src/env/env_file.c \
@ -4870,6 +4962,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/hash/hash_verify.c \
$(PRJ_DIR)/../src/heap/heap_auto.c \
$(PRJ_DIR)/../src/heap/heap_autop.c \
$(PRJ_DIR)/../src/heap/heap_backup.c \
$(PRJ_DIR)/../src/heap/heap.c \
$(PRJ_DIR)/../src/heap/heap_conv.c \
$(PRJ_DIR)/../src/heap/heap_method.c \
@ -4904,6 +4997,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/log/log_verify_auto.c \
$(PRJ_DIR)/../src/log/log_verify_int.c \
$(PRJ_DIR)/../src/mp/mp_alloc.c \
$(PRJ_DIR)/../src/mp/mp_backup.c \
$(PRJ_DIR)/../src/mp/mp_bh.c \
$(PRJ_DIR)/../src/mp/mp_fget.c \
$(PRJ_DIR)/../src/mp/mp_fmethod.c \
@ -4939,6 +5033,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/os/os_handle.c \
$(PRJ_DIR)/../src/os/os_mkdir.c \
$(PRJ_DIR)/../src/os/os_open.c \
$(PRJ_DIR)/../src/os/os_path.c \
$(PRJ_DIR)/../src/os/os_pid.c \
$(PRJ_DIR)/../src/os/os_rename.c \
$(PRJ_DIR)/../src/os/os_root.c \

View file

@ -1077,6 +1077,24 @@ db_auto.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_objects
db_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_cam.c_dependDone
TRUE
<END>
@ -1671,6 +1689,24 @@ env_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_objects
env_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_config.c_dependDone
TRUE
<END>
@ -2427,6 +2463,24 @@ mp_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_objects
mp_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_bh.c_dependDone
TRUE
<END>
@ -3039,6 +3093,24 @@ os_open.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_objects
os_path.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_pid.c_dependDone
TRUE
<END>
@ -3608,6 +3680,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/db/db.c \
$(PRJ_DIR)/../src/db/db_am.c \
$(PRJ_DIR)/../src/db/db_auto.c \
$(PRJ_DIR)/../src/db/db_backup.c \
$(PRJ_DIR)/../src/db/db_cam.c \
$(PRJ_DIR)/../src/db/db_cds.c \
$(PRJ_DIR)/../src/db/db_compact.c \
@ -3641,6 +3714,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/dbreg/dbreg_stat.c \
$(PRJ_DIR)/../src/dbreg/dbreg_util.c \
$(PRJ_DIR)/../src/env/env_alloc.c \
$(PRJ_DIR)/../src/env/env_backup.c \
$(PRJ_DIR)/../src/env/env_config.c \
$(PRJ_DIR)/../src/env/env_failchk.c \
$(PRJ_DIR)/../src/env/env_file.c \
@ -3683,6 +3757,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/log/log_stat.c \
$(PRJ_DIR)/../src/log/log_verify_stub.c \
$(PRJ_DIR)/../src/mp/mp_alloc.c \
$(PRJ_DIR)/../src/mp/mp_backup.c \
$(PRJ_DIR)/../src/mp/mp_bh.c \
$(PRJ_DIR)/../src/mp/mp_fget.c \
$(PRJ_DIR)/../src/mp/mp_fmethod.c \
@ -3717,6 +3792,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/os/os_handle.c \
$(PRJ_DIR)/../src/os/os_mkdir.c \
$(PRJ_DIR)/../src/os/os_open.c \
$(PRJ_DIR)/../src/os/os_path.c \
$(PRJ_DIR)/../src/os/os_pid.c \
$(PRJ_DIR)/../src/os/os_rename.c \
$(PRJ_DIR)/../src/os/os_root.c \

View file

@ -1226,6 +1226,24 @@ db_auto.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_objects
db_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_cam.c_dependDone
TRUE
<END>
@ -1874,6 +1892,24 @@ env_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_objects
env_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_config.c_dependDone
TRUE
<END>
@ -2468,6 +2504,24 @@ heap_autop.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_objects
heap_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/heap/heap.c_dependDone
TRUE
<END>
@ -3080,6 +3134,24 @@ mp_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_objects
mp_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_bh.c_dependDone
TRUE
<END>
@ -3710,6 +3782,24 @@ os_open.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_objects
os_path.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_pid.c_dependDone
TRUE
<END>
@ -4860,6 +4950,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/db/db.c \
$(PRJ_DIR)/../src/db/db_am.c \
$(PRJ_DIR)/../src/db/db_auto.c \
$(PRJ_DIR)/../src/db/db_backup.c \
$(PRJ_DIR)/../src/db/db_cam.c \
$(PRJ_DIR)/../src/db/db_cds.c \
$(PRJ_DIR)/../src/db/db_compact.c \
@ -4896,6 +4987,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/dbreg/dbreg_stat.c \
$(PRJ_DIR)/../src/dbreg/dbreg_util.c \
$(PRJ_DIR)/../src/env/env_alloc.c \
$(PRJ_DIR)/../src/env/env_backup.c \
$(PRJ_DIR)/../src/env/env_config.c \
$(PRJ_DIR)/../src/env/env_failchk.c \
$(PRJ_DIR)/../src/env/env_file.c \
@ -4929,6 +5021,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/hash/hash_verify.c \
$(PRJ_DIR)/../src/heap/heap_auto.c \
$(PRJ_DIR)/../src/heap/heap_autop.c \
$(PRJ_DIR)/../src/heap/heap_backup.c \
$(PRJ_DIR)/../src/heap/heap.c \
$(PRJ_DIR)/../src/heap/heap_conv.c \
$(PRJ_DIR)/../src/heap/heap_method.c \
@ -4963,6 +5056,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/log/log_verify_auto.c \
$(PRJ_DIR)/../src/log/log_verify_int.c \
$(PRJ_DIR)/../src/mp/mp_alloc.c \
$(PRJ_DIR)/../src/mp/mp_backup.c \
$(PRJ_DIR)/../src/mp/mp_bh.c \
$(PRJ_DIR)/../src/mp/mp_fget.c \
$(PRJ_DIR)/../src/mp/mp_fmethod.c \
@ -4998,6 +5092,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/os/os_handle.c \
$(PRJ_DIR)/../src/os/os_mkdir.c \
$(PRJ_DIR)/../src/os/os_open.c \
$(PRJ_DIR)/../src/os/os_path.c \
$(PRJ_DIR)/../src/os/os_pid.c \
$(PRJ_DIR)/../src/os/os_rename.c \
$(PRJ_DIR)/../src/os/os_root.c \

View file

@ -1135,6 +1135,24 @@ db_auto.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_objects
db_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/db/db_cam.c_dependDone
TRUE
<END>
@ -1729,6 +1747,24 @@ env_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_objects
env_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/env/env_config.c_dependDone
TRUE
<END>
@ -2485,6 +2521,24 @@ mp_alloc.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_objects
mp_backup.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_backup.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/mp/mp_bh.c_dependDone
TRUE
<END>
@ -3097,6 +3151,24 @@ os_open.o
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependDone
TRUE
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_dependencies
$(PRJ_DIR)/db_config.h \
$(PRJ_DIR)/db_int.h \
$(PRJ_DIR)/db.h
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_objects
os_path.o
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_path.c_tool
C/C++ compiler
<END>
<BEGIN> FILE_$(PRJ_DIR)/../src/os/os_pid.c_dependDone
TRUE
<END>
@ -3666,6 +3738,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/db/db.c \
$(PRJ_DIR)/../src/db/db_am.c \
$(PRJ_DIR)/../src/db/db_auto.c \
$(PRJ_DIR)/../src/db/db_backup.c \
$(PRJ_DIR)/../src/db/db_cam.c \
$(PRJ_DIR)/../src/db/db_cds.c \
$(PRJ_DIR)/../src/db/db_compact.c \
@ -3699,6 +3772,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/dbreg/dbreg_stat.c \
$(PRJ_DIR)/../src/dbreg/dbreg_util.c \
$(PRJ_DIR)/../src/env/env_alloc.c \
$(PRJ_DIR)/../src/env/env_backup.c \
$(PRJ_DIR)/../src/env/env_config.c \
$(PRJ_DIR)/../src/env/env_failchk.c \
$(PRJ_DIR)/../src/env/env_file.c \
@ -3741,6 +3815,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/log/log_stat.c \
$(PRJ_DIR)/../src/log/log_verify_stub.c \
$(PRJ_DIR)/../src/mp/mp_alloc.c \
$(PRJ_DIR)/../src/mp/mp_backup.c \
$(PRJ_DIR)/../src/mp/mp_bh.c \
$(PRJ_DIR)/../src/mp/mp_fget.c \
$(PRJ_DIR)/../src/mp/mp_fmethod.c \
@ -3775,6 +3850,7 @@ $(PRJ_DIR)/../src/btree/bt_compact.c \
$(PRJ_DIR)/../src/os/os_handle.c \
$(PRJ_DIR)/../src/os/os_mkdir.c \
$(PRJ_DIR)/../src/os/os_open.c \
$(PRJ_DIR)/../src/os/os_path.c \
$(PRJ_DIR)/../src/os/os_pid.c \
$(PRJ_DIR)/../src/os/os_rename.c \
$(PRJ_DIR)/../src/os/os_root.c \

View file

@ -216,6 +216,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_am.o : $(BDB_ROOT)/src/d
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_auto.o : $(BDB_ROOT)/src/db/db_auto.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_backup.o : $(BDB_ROOT)/src/db/db_backup.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cam.o : $(BDB_ROOT)/src/db/db_cam.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cds.o : $(BDB_ROOT)/src/db/db_cds.c
@ -288,6 +290,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_util.o : $(BDB_ROO
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_alloc.o : $(BDB_ROOT)/src/env/env_alloc.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_backup.o : $(BDB_ROOT)/src/env/env_backup.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_config.o : $(BDB_ROOT)/src/env/env_config.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_failchk.o : $(BDB_ROOT)/src/env/env_failchk.c
@ -354,6 +358,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_auto.o : $(BDB_ROOT)
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_autop.o : $(BDB_ROOT)/src/heap/heap_autop.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_backup.o : $(BDB_ROOT)/src/heap/heap_backup.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap.o : $(BDB_ROOT)/src/heap/heap.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_conv.o : $(BDB_ROOT)/src/heap/heap_conv.c
@ -422,6 +428,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_int.o : $(BDB_R
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_alloc.o : $(BDB_ROOT)/src/mp/mp_alloc.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_backup.o : $(BDB_ROOT)/src/mp/mp_backup.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_bh.o : $(BDB_ROOT)/src/mp/mp_bh.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fget.o : $(BDB_ROOT)/src/mp/mp_fget.c
@ -492,6 +500,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_mkdir.o : $(BDB_ROOT)/sr
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_open.o : $(BDB_ROOT)/src/os/os_open.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_path.o : $(BDB_ROOT)/src/os/os_path.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_pid.o : $(BDB_ROOT)/src/os/os_pid.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_rename.o : $(BDB_ROOT)/src/os/os_rename.c
@ -776,6 +786,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_am.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_auto.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_backup.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cam.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cds.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_compact.o \
@ -812,6 +823,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_stat.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_util.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_alloc.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_backup.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_config.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_failchk.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_file.o \
@ -845,6 +857,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/hash/hash_verify.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_auto.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_autop.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_backup.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_conv.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_method.o \
@ -879,6 +892,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_auto.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_int.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_alloc.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_backup.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_bh.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fget.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fmethod.o \
@ -914,6 +928,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_handle.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_mkdir.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_open.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_path.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_pid.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_rename.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_root.o \
@ -1092,6 +1107,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_am.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_auto.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_backup.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cam.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cds.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_compact.d \
@ -1128,6 +1144,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_stat.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_util.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_alloc.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_backup.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_config.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_failchk.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_file.d \
@ -1161,6 +1178,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/hash/hash_verify.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_auto.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_autop.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_backup.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_conv.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/heap/heap_method.d \
@ -1195,6 +1213,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_auto.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_int.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_alloc.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_backup.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_bh.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fget.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fmethod.d \
@ -1230,6 +1249,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_handle.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_mkdir.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_open.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_path.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_pid.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_rename.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_root.d \

View file

@ -206,6 +206,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_am.o : $(BDB_ROOT)/src/d
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_auto.o : $(BDB_ROOT)/src/db/db_auto.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_backup.o : $(BDB_ROOT)/src/db/db_backup.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cam.o : $(BDB_ROOT)/src/db/db_cam.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cds.o : $(BDB_ROOT)/src/db/db_cds.c
@ -272,6 +274,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_util.o : $(BDB_ROO
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_alloc.o : $(BDB_ROOT)/src/env/env_alloc.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_backup.o : $(BDB_ROOT)/src/env/env_backup.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_config.o : $(BDB_ROOT)/src/env/env_config.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_failchk.o : $(BDB_ROOT)/src/env/env_failchk.c
@ -356,6 +360,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_stub.o : $(BDB_
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_alloc.o : $(BDB_ROOT)/src/mp/mp_alloc.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_backup.o : $(BDB_ROOT)/src/mp/mp_backup.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_bh.o : $(BDB_ROOT)/src/mp/mp_bh.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fget.o : $(BDB_ROOT)/src/mp/mp_fget.c
@ -424,6 +430,8 @@ bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_mkdir.o : $(BDB_ROOT)/sr
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_open.o : $(BDB_ROOT)/src/os/os_open.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_path.o : $(BDB_ROOT)/src/os/os_path.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_pid.o : $(BDB_ROOT)/src/os/os_pid.c
$(TRACE_FLAG)if [ ! -d "`dirname "$@"`" ]; then mkdir -p "`dirname "$@"`"; fi;echo "building $@"; $(TOOL_PATH)dcc $(DEBUGFLAGS_C-Compiler) $(CC_ARCH_SPEC) -W:c:,-Xclib-optim-off -Xansi -Xlocal-data-area-static-only -Xforce-declarations -Xmake-dependency=0xd $(ADDED_CFLAGS) $(IDE_INCLUDES) $(ADDED_INCLUDES) -DCPU=$(CPU) -DTOOL_FAMILY=$(TOOL_FAMILY) -DTOOL=$(TOOL) -D_WRS_KERNEL $(DEFINES) -o "$@" -c "$<"
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_rename.o : $(BDB_ROOT)/src/os/os_rename.c
@ -531,6 +539,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_am.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_auto.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_backup.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cam.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cds.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_compact.o \
@ -564,6 +573,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_stat.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_util.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_alloc.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_backup.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_config.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_failchk.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_file.o \
@ -606,6 +616,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_stat.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_stub.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_alloc.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_backup.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_bh.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fget.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fmethod.o \
@ -640,6 +651,7 @@ OBJECTS_bdbvxw = \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_handle.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_mkdir.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_open.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_path.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_pid.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_rename.o \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_root.o \
@ -727,6 +739,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_am.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_auto.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_backup.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cam.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_cds.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/db/db_compact.d \
@ -760,6 +773,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_stat.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/dbreg/dbreg_util.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_alloc.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_backup.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_config.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_failchk.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/env/env_file.d \
@ -802,6 +816,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_stat.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/log/log_verify_stub.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_alloc.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_backup.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_bh.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fget.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/mp/mp_fmethod.d \
@ -836,6 +851,7 @@ DEP_FILES := \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_handle.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_mkdir.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_open.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_path.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_pid.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_rename.d \
bdbvxw/$(MODE_DIR)/Objects/$(BDB_OBJECT_DIR)/src/os/os_root.d \

View file

@ -2,7 +2,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*
@ -46,10 +46,10 @@ extern "C" {
#define DB_VERSION_FAMILY 11
#define DB_VERSION_RELEASE 2
#define DB_VERSION_MAJOR 5
#define DB_VERSION_MINOR 2
#define DB_VERSION_PATCH 36
#define DB_VERSION_STRING "Berkeley DB 5.2.36: (September 14, 2011)"
#define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library version 11.2.5.2.36: (September 14, 2011)"
#define DB_VERSION_MINOR 3
#define DB_VERSION_PATCH 21
#define DB_VERSION_STRING "Berkeley DB 5.3.21: (May 11, 2012)"
#define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library version 11.2.5.3.21: (May 11, 2012)"
/*
* !!!
@ -458,10 +458,10 @@ struct __db_lockreq {
/*******************************************************
* Logging.
*******************************************************/
#define DB_LOGVERSION 18 /* Current log version. */
#define DB_LOGVERSION_LATCHING 15 /* Log version using latching. */
#define DB_LOGCHKSUM 12 /* Check sum headers. */
#define DB_LOGOLDVER 8 /* Oldest log version supported. */
#define DB_LOGVERSION 19 /* Current log version. */
#define DB_LOGVERSION_LATCHING 15 /* Log version using latching: db-4.8 */
#define DB_LOGCHKSUM 12 /* Check sum headers: db-4.5 */
#define DB_LOGOLDVER 8 /* Oldest version supported: db-4.2 */
#define DB_LOGMAGIC 0x040988
/*
@ -534,7 +534,7 @@ struct __db_log_stat { /* SHARED */
u_int32_t st_lg_size; /* Log file size. */
u_int32_t st_wc_bytes; /* Bytes to log since checkpoint. */
u_int32_t st_wc_mbytes; /* Megabytes to log since checkpoint. */
u_int32_t st_fileid_init; /* Inital allocation for fileids. */
u_int32_t st_fileid_init; /* Initial allocation for fileids. */
#ifndef __TEST_DB_NO_STATISTICS
u_int32_t st_nfileid; /* Current number of fileids. */
u_int32_t st_maxnfileid; /* Maximum number of fileids used. */
@ -697,11 +697,12 @@ struct __db_mpoolfile {
* multiple threads of control.
*/
#define MP_FILEID_SET 0x001 /* Application supplied a file ID. */
#define MP_FLUSH 0x002 /* Was opened to flush a buffer. */
#define MP_MULTIVERSION 0x004 /* Opened for multiversion access. */
#define MP_OPEN_CALLED 0x008 /* File opened. */
#define MP_READONLY 0x010 /* File is readonly. */
#define MP_DUMMY 0x020 /* File is dummy for __memp_fput. */
#define MP_FLUSH 0x002 /* Was used to flush a buffer. */
#define MP_FOR_FLUSH 0x004 /* Was opened to flush a buffer. */
#define MP_MULTIVERSION 0x008 /* Opened for multiversion access. */
#define MP_OPEN_CALLED 0x010 /* File opened. */
#define MP_READONLY 0x020 /* File is readonly. */
#define MP_DUMMY 0x040 /* File is dummy for __memp_fput. */
u_int32_t flags;
};
@ -769,6 +770,7 @@ struct __db_mpool_fstat {
uintmax_t st_page_create; /* Pages created in the cache. */
uintmax_t st_page_in; /* Pages read in. */
uintmax_t st_page_out; /* Pages written out. */
uintmax_t st_backup_spins; /* Number of spins during a copy. */
#endif
char *file_name; /* File name. */
};
@ -1388,18 +1390,19 @@ typedef enum {
/* DB (private) error return codes. */
#define DB_ALREADY_ABORTED (-30899)
#define DB_DELETED (-30898)/* Recovery file marked deleted. */
#define DB_EVENT_NOT_HANDLED (-30897)/* Forward event to application. */
#define DB_NEEDSPLIT (-30896)/* Page needs to be split. */
#define DB_REP_BULKOVF (-30895)/* Rep bulk buffer overflow. */
#define DB_REP_LOGREADY (-30894)/* Rep log ready for recovery. */
#define DB_REP_NEWMASTER (-30893)/* We have learned of a new master. */
#define DB_REP_PAGEDONE (-30892)/* This page was already done. */
#define DB_SURPRISE_KID (-30891)/* Child commit where parent
#define DB_CHKSUM_FAIL (-30898)/* Checksum failed. */
#define DB_DELETED (-30897)/* Recovery file marked deleted. */
#define DB_EVENT_NOT_HANDLED (-30896)/* Forward event to application. */
#define DB_NEEDSPLIT (-30895)/* Page needs to be split. */
#define DB_REP_BULKOVF (-30894)/* Rep bulk buffer overflow. */
#define DB_REP_LOGREADY (-30893)/* Rep log ready for recovery. */
#define DB_REP_NEWMASTER (-30892)/* We have learned of a new master. */
#define DB_REP_PAGEDONE (-30891)/* This page was already done. */
#define DB_SURPRISE_KID (-30890)/* Child commit where parent
didn't know it was a parent. */
#define DB_SWAPBYTES (-30890)/* Database needs byte swapping. */
#define DB_TXN_CKP (-30889)/* Encountered ckp record in log. */
#define DB_VERIFY_FATAL (-30888)/* DB->verify cannot proceed. */
#define DB_SWAPBYTES (-30889)/* Database needs byte swapping. */
#define DB_TXN_CKP (-30888)/* Encountered ckp record in log. */
#define DB_VERIFY_FATAL (-30887)/* DB->verify cannot proceed. */
/* Database handle. */
struct __db {
@ -1639,6 +1642,8 @@ struct __db {
__P((DB *, u_int32_t (**)(DB *, const void *, u_int32_t)));
int (*get_h_nelem) __P((DB *, u_int32_t *));
int (*get_heapsize) __P((DB *, u_int32_t *, u_int32_t *));
int (*get_heap_regionsize) __P((DB *, u_int32_t *));
int (*get_lk_exclusive) __P((DB *, int *, int *));
int (*get_lorder) __P((DB *, int *));
DB_MPOOLFILE *(*get_mpf) __P((DB *));
void (*get_msgcall) __P((DB *,
@ -1698,6 +1703,8 @@ struct __db {
__P((DB *, u_int32_t (*)(DB *, const void *, u_int32_t)));
int (*set_h_nelem) __P((DB *, u_int32_t));
int (*set_heapsize) __P((DB *, u_int32_t, u_int32_t, u_int32_t));
int (*set_heap_regionsize) __P((DB *, u_int32_t));
int (*set_lk_exclusive) __P((DB *, int));
int (*set_lorder) __P((DB *, int));
void (*set_msgcall) __P((DB *, void (*)(const DB_ENV *, const char *)));
void (*set_msgfile) __P((DB *, FILE *));
@ -1773,21 +1780,28 @@ struct __db {
#define DB_AM_NOT_DURABLE 0x00008000 /* Do not log changes */
#define DB_AM_OPEN_CALLED 0x00010000 /* DB->open called */
#define DB_AM_PAD 0x00020000 /* Fixed-length record pad */
#define DB_AM_PGDEF 0x00040000 /* Page size was defaulted */
#define DB_AM_RDONLY 0x00080000 /* Database is readonly */
#define DB_AM_READ_UNCOMMITTED 0x00100000 /* Support degree 1 isolation */
#define DB_AM_RECNUM 0x00200000 /* DB_RECNUM */
#define DB_AM_RECOVER 0x00400000 /* DB opened by recovery routine */
#define DB_AM_RENUMBER 0x00800000 /* DB_RENUMBER */
#define DB_AM_REVSPLITOFF 0x01000000 /* DB_REVSPLITOFF */
#define DB_AM_SECONDARY 0x02000000 /* Database is a secondary index */
#define DB_AM_SNAPSHOT 0x04000000 /* DB_SNAPSHOT */
#define DB_AM_SUBDB 0x08000000 /* Subdatabases supported */
#define DB_AM_SWAP 0x10000000 /* Pages need to be byte-swapped */
#define DB_AM_TXN 0x20000000 /* Opened in a transaction */
#define DB_AM_VERIFYING 0x40000000 /* DB handle is in the verifier */
#define DB_AM_PARTDB 0x00040000 /* Handle for a database partition */
#define DB_AM_PGDEF 0x00080000 /* Page size was defaulted */
#define DB_AM_RDONLY 0x00100000 /* Database is readonly */
#define DB_AM_READ_UNCOMMITTED 0x00200000 /* Support degree 1 isolation */
#define DB_AM_RECNUM 0x00400000 /* DB_RECNUM */
#define DB_AM_RECOVER 0x00800000 /* DB opened by recovery routine */
#define DB_AM_RENUMBER 0x01000000 /* DB_RENUMBER */
#define DB_AM_REVSPLITOFF 0x02000000 /* DB_REVSPLITOFF */
#define DB_AM_SECONDARY 0x04000000 /* Database is a secondary index */
#define DB_AM_SNAPSHOT 0x08000000 /* DB_SNAPSHOT */
#define DB_AM_SUBDB 0x10000000 /* Subdatabases supported */
#define DB_AM_SWAP 0x20000000 /* Pages need to be byte-swapped */
#define DB_AM_TXN 0x40000000 /* Opened in a transaction */
#define DB_AM_VERIFYING 0x80000000 /* DB handle is in the verifier */
u_int32_t orig_flags; /* Flags at open, for refresh */
u_int32_t flags;
#define DB2_AM_EXCL 0x00000001 /* Exclusively lock the handle */
#define DB2_AM_INTEXCL 0x00000002 /* Internal exclusive lock. */
#define DB2_AM_NOWAIT 0x00000004 /* Do not wait for handle lock */
u_int32_t orig_flags2; /* Second flags word; for refresh */
u_int32_t flags2; /* Second flags word */
};
/*
@ -2187,6 +2201,7 @@ struct __db_heap_stat { /* SHARED */
u_int32_t heap_pagecnt; /* Page count. */
u_int32_t heap_pagesize; /* Page size. */
u_int32_t heap_nregions; /* Number of regions. */
u_int32_t heap_regionsize; /* Number of pages in a region. */
};
/* Queue statistics structure. */
@ -2237,6 +2252,16 @@ typedef enum {
DB_MEM_THREAD=6
} DB_MEM_CONFIG;
/*
* Backup configuration types.
*/
typedef enum {
DB_BACKUP_READ_COUNT = 1,
DB_BACKUP_READ_SLEEP = 2,
DB_BACKUP_SIZE = 3,
DB_BACKUP_WRITE_DIRECT = 4
} DB_BACKUP_CONFIG;
struct __db_env {
ENV *env; /* Linked ENV structure */
@ -2269,6 +2294,7 @@ struct __db_env {
/* Application specified paths */
char *db_log_dir; /* Database log file directory */
char *db_md_dir; /* Persistent metadata directory */
char *db_tmp_dir; /* Database tmp file directory */
char *db_create_dir; /* Create directory for data files */
@ -2383,8 +2409,10 @@ struct __db_env {
/* DB_ENV PUBLIC HANDLE LIST BEGIN */
int (*add_data_dir) __P((DB_ENV *, const char *));
int (*backup) __P((DB_ENV *, const char *, u_int32_t));
int (*cdsgroup_begin) __P((DB_ENV *, DB_TXN **));
int (*close) __P((DB_ENV *, u_int32_t));
int (*dbbackup) __P((DB_ENV *, const char *, const char *, u_int32_t));
int (*dbremove) __P((DB_ENV *,
DB_TXN *, const char *, const char *, u_int32_t));
int (*dbrename) __P((DB_ENV *,
@ -2402,6 +2430,11 @@ struct __db_env {
int (*get_create_dir) __P((DB_ENV *, const char **));
int (*get_data_dirs) __P((DB_ENV *, const char ***));
int (*get_data_len) __P((DB_ENV *, u_int32_t *));
int (*get_backup_callbacks) __P((DB_ENV *,
int (**)(DB_ENV *, const char *, const char *, void **),
int (**)(DB_ENV *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *),
int (**)(DB_ENV *, const char *, void *)));
int (*get_backup_config) __P((DB_ENV *, DB_BACKUP_CONFIG, u_int32_t *));
int (*get_encrypt_flags) __P((DB_ENV *, u_int32_t *));
void (*get_errcall) __P((DB_ENV *,
void (**)(const DB_ENV *, const char *, const char *)));
@ -2428,6 +2461,7 @@ struct __db_env {
int (*get_lk_tablesize) __P((DB_ENV *, u_int32_t *));
int (*get_memory_init) __P((DB_ENV *, DB_MEM_CONFIG, u_int32_t *));
int (*get_memory_max) __P((DB_ENV *, u_int32_t *, u_int32_t *));
int (*get_metadata_dir) __P((DB_ENV *, const char **));
int (*get_mp_max_openfd) __P((DB_ENV *, int *));
int (*get_mp_max_write) __P((DB_ENV *, int *, db_timeout_t *));
int (*get_mp_mmapsize) __P((DB_ENV *, size_t *));
@ -2550,6 +2584,12 @@ struct __db_env {
int (*set_create_dir) __P((DB_ENV *, const char *));
int (*set_data_dir) __P((DB_ENV *, const char *));
int (*set_data_len) __P((DB_ENV *, u_int32_t));
int (*set_backup_callbacks) __P((DB_ENV *,
int (*)(DB_ENV *, const char *, const char *, void **),
int (*)(DB_ENV *, u_int32_t,
u_int32_t, u_int32_t, u_int8_t *, void *),
int (*)(DB_ENV *, const char *, void *)));
int (*set_backup_config) __P((DB_ENV *, DB_BACKUP_CONFIG, u_int32_t));
int (*set_encrypt) __P((DB_ENV *, const char *, u_int32_t));
void (*set_errcall) __P((DB_ENV *,
void (*)(const DB_ENV *, const char *, const char *)));
@ -2577,6 +2617,7 @@ struct __db_env {
int (*set_lk_tablesize) __P((DB_ENV *, u_int32_t));
int (*set_memory_init) __P((DB_ENV *, DB_MEM_CONFIG, u_int32_t));
int (*set_memory_max) __P((DB_ENV *, u_int32_t, u_int32_t));
int (*set_metadata_dir) __P((DB_ENV *, const char *));
int (*set_mp_max_openfd) __P((DB_ENV *, int));
int (*set_mp_max_write) __P((DB_ENV *, int, db_timeout_t));
int (*set_mp_mmapsize) __P((DB_ENV *, size_t));
@ -2762,30 +2803,35 @@ typedef struct entry {
#define DB_ARCH_LOG 0x00000004
#define DB_ARCH_REMOVE 0x00000008
#define DB_AUTO_COMMIT 0x00000100
#define DB_BACKUP_CLEAN 0x00000002
#define DB_BACKUP_FILES 0x00000008
#define DB_BACKUP_NO_LOGS 0x00000010
#define DB_BACKUP_SINGLE_DIR 0x00000020
#define DB_BACKUP_UPDATE 0x00000040
#define DB_BOOTSTRAP_HELPER 0x00000001
#define DB_CDB_ALLDB 0x00000040
#define DB_CHKSUM 0x00000008
#define DB_CKP_INTERNAL 0x00000002
#define DB_CREATE 0x00000001
#define DB_CURSOR_BULK 0x00000001
#define DB_CURSOR_TRANSIENT 0x00000004
#define DB_CURSOR_TRANSIENT 0x00000008
#define DB_CXX_NO_EXCEPTIONS 0x00000002
#define DB_DATABASE_LOCKING 0x00000080
#define DB_DIRECT 0x00000010
#define DB_DIRECT 0x00000020
#define DB_DIRECT_DB 0x00000200
#define DB_DSYNC_DB 0x00000400
#define DB_DUP 0x00000010
#define DB_DUPSORT 0x00000004
#define DB_DURABLE_UNKNOWN 0x00000020
#define DB_DUPSORT 0x00000002
#define DB_DURABLE_UNKNOWN 0x00000040
#define DB_ENCRYPT 0x00000001
#define DB_ENCRYPT_AES 0x00000001
#define DB_EXCL 0x00000040
#define DB_EXTENT 0x00000040
#define DB_FAILCHK 0x00000020
#define DB_EXCL 0x00000004
#define DB_EXTENT 0x00000100
#define DB_FAILCHK 0x00000010
#define DB_FAILCHK_ISALIVE 0x00000040
#define DB_FAST_STAT 0x00000001
#define DB_FCNTL_LOCKING 0x00000800
#define DB_FLUSH 0x00000001
#define DB_FLUSH 0x00000002
#define DB_FORCE 0x00000001
#define DB_FORCESYNC 0x00000001
#define DB_FOREIGN_ABORT 0x00000001
@ -2805,26 +2851,28 @@ typedef struct entry {
#define DB_INIT_REP 0x00001000
#define DB_INIT_TXN 0x00002000
#define DB_INORDER 0x00000020
#define DB_INTERNAL_DB 0x00001000
#define DB_INTERNAL_PERSISTENT_DB 0x00001000
#define DB_INTERNAL_TEMPORARY_DB 0x00002000
#define DB_JOIN_NOSORT 0x00000001
#define DB_LEGACY 0x00000004
#define DB_LOCAL_SITE 0x00000008
#define DB_LOCKDOWN 0x00004000
#define DB_LOCK_CHECK 0x00000001
#define DB_LOCK_NOWAIT 0x00000002
#define DB_LOCK_RECORD 0x00000004
#define DB_LOCK_SET_TIMEOUT 0x00000008
#define DB_LOCK_SWITCH 0x00000010
#define DB_LOCK_UPGRADE 0x00000020
#define DB_LOCK_IGNORE_REC 0x00000002
#define DB_LOCK_NOWAIT 0x00000004
#define DB_LOCK_RECORD 0x00000008
#define DB_LOCK_SET_TIMEOUT 0x00000010
#define DB_LOCK_SWITCH 0x00000020
#define DB_LOCK_UPGRADE 0x00000040
#define DB_LOG_AUTO_REMOVE 0x00000001
#define DB_LOG_CHKPNT 0x00000002
#define DB_LOG_CHKPNT 0x00000001
#define DB_LOG_COMMIT 0x00000004
#define DB_LOG_DIRECT 0x00000002
#define DB_LOG_DSYNC 0x00000004
#define DB_LOG_IN_MEMORY 0x00000008
#define DB_LOG_NOCOPY 0x00000008
#define DB_LOG_NOT_DURABLE 0x00000010
#define DB_LOG_NO_DATA 0x00000004
#define DB_LOG_NO_DATA 0x00000002
#define DB_LOG_VERIFY_CAF 0x00000001
#define DB_LOG_VERIFY_DBFILE 0x00000002
#define DB_LOG_VERIFY_ERR 0x00000004
@ -2843,26 +2891,26 @@ typedef struct entry {
#define DB_MPOOL_LAST 0x00000010
#define DB_MPOOL_NEW 0x00000020
#define DB_MPOOL_NOFILE 0x00000001
#define DB_MPOOL_NOLOCK 0x00000002
#define DB_MPOOL_NOLOCK 0x00000004
#define DB_MPOOL_TRY 0x00000040
#define DB_MPOOL_UNLINK 0x00000002
#define DB_MULTIPLE 0x00000800
#define DB_MULTIPLE_KEY 0x00004000
#define DB_MULTIVERSION 0x00000004
#define DB_MULTIVERSION 0x00000008
#define DB_MUTEX_ALLOCATED 0x00000001
#define DB_MUTEX_LOCKED 0x00000002
#define DB_MUTEX_LOGICAL_LOCK 0x00000004
#define DB_MUTEX_PROCESS_ONLY 0x00000008
#define DB_MUTEX_SELF_BLOCK 0x00000010
#define DB_MUTEX_SHARED 0x00000020
#define DB_NOERROR 0x00002000
#define DB_NOERROR 0x00004000
#define DB_NOFLUSH 0x00001000
#define DB_NOLOCKING 0x00002000
#define DB_NOMMAP 0x00000008
#define DB_NOMMAP 0x00000010
#define DB_NOORDERCHK 0x00000002
#define DB_NOPANIC 0x00004000
#define DB_NOSYNC 0x00000001
#define DB_NO_AUTO_COMMIT 0x00004000
#define DB_NO_AUTO_COMMIT 0x00008000
#define DB_NO_CHECKPOINT 0x00008000
#define DB_ODDFILESIZE 0x00000080
#define DB_ORDERCHKONLY 0x00000004
@ -2873,7 +2921,7 @@ typedef struct entry {
#define DB_PR_PAGE 0x00000010
#define DB_PR_RECOVERYTEST 0x00000020
#define DB_RDONLY 0x00000400
#define DB_RDWRMASTER 0x00008000
#define DB_RDWRMASTER 0x00010000
#define DB_READ_COMMITTED 0x00000400
#define DB_READ_UNCOMMITTED 0x00000200
#define DB_RECNUM 0x00000040
@ -2936,43 +2984,44 @@ typedef struct entry {
#define DB_ST_RELEN 0x00008000
#define DB_ST_TOPLEVEL 0x00010000
#define DB_SYSTEM_MEM 0x00080000
#define DB_THREAD 0x00000010
#define DB_THREAD 0x00000020
#define DB_TIME_NOTGRANTED 0x00040000
#define DB_TRUNCATE 0x00010000
#define DB_TXN_BULK 0x00000008
#define DB_TRUNCATE 0x00020000
#define DB_TXN_BULK 0x00000010
#define DB_TXN_FAMILY 0x00000040
#define DB_TXN_NOSYNC 0x00000001
#define DB_TXN_NOT_DURABLE 0x00000002
#define DB_TXN_NOT_DURABLE 0x00000004
#define DB_TXN_NOWAIT 0x00000002
#define DB_TXN_SNAPSHOT 0x00000010
#define DB_TXN_SYNC 0x00000004
#define DB_TXN_SNAPSHOT 0x00000004
#define DB_TXN_SYNC 0x00000008
#define DB_TXN_WAIT 0x00000080
#define DB_TXN_WRITE_NOSYNC 0x00000020
#define DB_UNREF 0x00020000
#define DB_UPGRADE 0x00000001
#define DB_USE_ENVIRON 0x00000004
#define DB_USE_ENVIRON_ROOT 0x00000008
#define DB_VERB_DEADLOCK 0x00000001
#define DB_VERB_FILEOPS 0x00000002
#define DB_VERB_FILEOPS_ALL 0x00000004
#define DB_VERB_RECOVERY 0x00000008
#define DB_VERB_REGISTER 0x00000010
#define DB_VERB_REPLICATION 0x00000020
#define DB_VERB_REPMGR_CONNFAIL 0x00000040
#define DB_VERB_REPMGR_MISC 0x00000080
#define DB_VERB_REP_ELECT 0x00000100
#define DB_VERB_REP_LEASE 0x00000200
#define DB_VERB_REP_MISC 0x00000400
#define DB_VERB_REP_MSGS 0x00000800
#define DB_VERB_REP_SYNC 0x00001000
#define DB_VERB_REP_SYSTEM 0x00002000
#define DB_VERB_REP_TEST 0x00004000
#define DB_VERB_WAITSFOR 0x00008000
#define DB_VERB_BACKUP 0x00000001
#define DB_VERB_DEADLOCK 0x00000002
#define DB_VERB_FILEOPS 0x00000004
#define DB_VERB_FILEOPS_ALL 0x00000008
#define DB_VERB_RECOVERY 0x00000010
#define DB_VERB_REGISTER 0x00000020
#define DB_VERB_REPLICATION 0x00000040
#define DB_VERB_REPMGR_CONNFAIL 0x00000080
#define DB_VERB_REPMGR_MISC 0x00000100
#define DB_VERB_REP_ELECT 0x00000200
#define DB_VERB_REP_LEASE 0x00000400
#define DB_VERB_REP_MISC 0x00000800
#define DB_VERB_REP_MSGS 0x00001000
#define DB_VERB_REP_SYNC 0x00002000
#define DB_VERB_REP_SYSTEM 0x00004000
#define DB_VERB_REP_TEST 0x00008000
#define DB_VERB_WAITSFOR 0x00010000
#define DB_VERIFY 0x00000002
#define DB_VERIFY_PARTITION 0x00040000
#define DB_WRITECURSOR 0x00000008
#define DB_WRITECURSOR 0x00000010
#define DB_WRITELOCK 0x00000020
#define DB_WRITEOPEN 0x00020000
#define DB_WRITEOPEN 0x00040000
#define DB_XA_CREATE 0x00000001
#define DB_YIELDCPU 0x00080000

View file

@ -47,6 +47,9 @@
/* Define to 1 if you have the `atol' function. */
#define HAVE_ATOL 1
/* Define to 1 if platform reads and writes files atomically. */
/* #undef HAVE_ATOMICFILEREAD */
/* Define to 1 to use Solaris library routes for atomic operations. */
/* #undef HAVE_ATOMIC_SOLARIS */
@ -568,16 +571,16 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 5.2.36"
#define PACKAGE_STRING "Berkeley DB 5.3.21"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-5.2.36"
#define PACKAGE_TARNAME "db-5.3.21"
/* Define to the home page for this package. */
#define PACKAGE_URL "http://www.oracle.com/technology/software/products/berkeley-db/index.html"
/* Define to the version of this package. */
#define PACKAGE_VERSION "5.2.36"
#define PACKAGE_VERSION "5.3.21"
/* The size of a `char', as computed by sizeof. */
/* #undef SIZEOF_CHAR */

View file

@ -47,6 +47,9 @@
/* Define to 1 if you have the `atol' function. */
#define HAVE_ATOL 1
/* Define to 1 if platform reads and writes files atomically. */
/* #undef HAVE_ATOMICFILEREAD */
/* Define to 1 to use Solaris library routes for atomic operations. */
/* #undef HAVE_ATOMIC_SOLARIS */
@ -568,16 +571,16 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 5.2.36"
#define PACKAGE_STRING "Berkeley DB 5.3.21"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-5.2.36"
#define PACKAGE_TARNAME "db-5.3.21"
/* Define to the home page for this package. */
#define PACKAGE_URL "http://www.oracle.com/technology/software/products/berkeley-db/index.html"
/* Define to the version of this package. */
#define PACKAGE_VERSION "5.2.36"
#define PACKAGE_VERSION "5.3.21"
/* The size of a `char', as computed by sizeof. */
/* #undef SIZEOF_CHAR */

View file

@ -2,7 +2,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -225,10 +225,12 @@ public:
virtual int get_feedback(void (**)(Db *, int, int));
virtual int get_flags(u_int32_t *);
virtual int get_heapsize(u_int32_t *, u_int32_t *);
virtual int get_heap_regionsize(u_int32_t *);
virtual int get_h_compare(int (**)(Db *, const Dbt *, const Dbt *));
virtual int get_h_ffactor(u_int32_t *);
virtual int get_h_hash(u_int32_t (**)(Db *, const void *, u_int32_t));
virtual int get_h_nelem(u_int32_t *);
virtual int get_lk_exclusive(bool *, bool *);
virtual int get_lorder(int *);
virtual void get_msgcall(void (**)(const DbEnv *, const char *));
virtual void get_msgfile(FILE **);
@ -281,12 +283,14 @@ public:
virtual int set_feedback(void (*)(Db *, int, int));
virtual int set_flags(u_int32_t);
virtual int set_heapsize(u_int32_t, u_int32_t);
virtual int set_heap_regionsize(u_int32_t);
virtual int set_h_compare(h_compare_fcn_type); /*deprecated*/
virtual int set_h_compare(int (*)(Db *, const Dbt *, const Dbt *));
virtual int set_h_ffactor(u_int32_t);
virtual int set_h_hash(h_hash_fcn_type); /*deprecated*/
virtual int set_h_hash(u_int32_t (*)(Db *, const void *, u_int32_t));
virtual int set_h_nelem(u_int32_t);
virtual int set_lk_exclusive(bool);
virtual int set_lorder(int);
virtual void set_msgcall(void (*)(const DbEnv *, const char *));
virtual void set_msgfile(FILE *);
@ -489,8 +493,11 @@ public:
// These methods match those in the C interface.
//
virtual int add_data_dir(const char *);
virtual int backup(const char *target, u_int32_t flags);
virtual int cdsgroup_begin(DbTxn **tid);
virtual int close(u_int32_t);
virtual int dbbackup(
const char *dbfile, const char *target, u_int32_t flags);
virtual int dbremove(DbTxn *txn, const char *name, const char *subdb,
u_int32_t flags);
virtual int dbrename(DbTxn *txn, const char *name, const char *subdb,
@ -511,6 +518,16 @@ public:
virtual int set_alloc(db_malloc_fcn_type, db_realloc_fcn_type,
db_free_fcn_type);
virtual void set_app_private(void *);
virtual int get_backup_callbacks(
int (**)(DbEnv *, const char *, const char *, void **),
int (**)(DbEnv *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *),
int (**)(DbEnv *, const char *, void *));
virtual int set_backup_callbacks(
int (*)(DbEnv *, const char *, const char *, void **),
int (*)(DbEnv *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *),
int (*)(DbEnv *, const char *, void *));
virtual int get_backup_config(DB_BACKUP_CONFIG, u_int32_t *);
virtual int set_backup_config(DB_BACKUP_CONFIG, u_int32_t);
virtual int get_cachesize(u_int32_t *, u_int32_t *, int *);
virtual int set_cachesize(u_int32_t, u_int32_t, int);
virtual int get_cache_max(u_int32_t *, u_int32_t *);
@ -572,6 +589,8 @@ public:
virtual int set_memory_init(DB_MEM_CONFIG, u_int32_t);
virtual int get_memory_max(u_int32_t *, u_int32_t *);
virtual int set_memory_max(u_int32_t, u_int32_t);
virtual int get_metadata_dir(const char **);
virtual int set_metadata_dir(const char *);
virtual int get_mp_mmapsize(size_t *);
virtual int set_mp_mmapsize(size_t);
virtual int get_mp_max_openfd(int *);
@ -799,6 +818,12 @@ public:
//
static int _app_dispatch_intercept(DB_ENV *dbenv, DBT *dbt, DB_LSN *lsn,
db_recops op);
static int _backup_close_intercept(DB_ENV *dbenv,
const char *dbname, void *handle);
static int _backup_open_intercept(DB_ENV *dbenv,
const char *dbname, const char *target, void **handle);
static int _backup_write_intercept(DB_ENV *dbenv, u_int32_t off_gbytes,
u_int32_t off_bytes, u_int32_t size, u_int8_t *buf, void *handle);
static void _paniccall_intercept(DB_ENV *dbenv, int errval);
static void _feedback_intercept(DB_ENV *dbenv, int opcode, int pct);
static void _event_func_intercept(DB_ENV *dbenv, u_int32_t, void *);
@ -838,6 +863,11 @@ private:
__DB_STD(ostream) *message_stream_;
int (*app_dispatch_callback_)(DbEnv *, Dbt *, DbLsn *, db_recops);
int (*backup_close_callback_)(DbEnv *, const char *, void *);
int (*backup_open_callback_)(
DbEnv *, const char *, const char *, void **);
int (*backup_write_callback_)(
DbEnv *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *);
int (*isalive_callback_)(DbEnv *, pid_t, db_threadid_t, u_int32_t);
void (*error_callback_)(const DbEnv *, const char *, const char *);
void (*feedback_callback_)(DbEnv *, int, int);

View file

@ -2,7 +2,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -266,6 +266,9 @@ typedef struct __fn {
#define F_CLR(p, f) (p)->flags &= ~(f)
#define F_ISSET(p, f) ((p)->flags & (f))
#define F_SET(p, f) (p)->flags |= (f)
#define F2_CLR(p, f) ((p)->flags2 &= ~(f))
#define F2_ISSET(p, f) ((p)->flags2 & (f))
#define F2_SET(p, f) ((p)->flags2 |= (f))
#define LF_CLR(f) ((flags) &= ~(f))
#define LF_ISSET(f) ((flags) & (f))
#define LF_SET(f) ((flags) |= (f))
@ -339,6 +342,12 @@ typedef struct __fn {
#define STAT_SET_VERB(env, cat, subcat, val, newval, id1, id2) NOP_STATEMENT
#endif
#if defined HAVE_SIMPLE_THREAD_TYPE
#define DB_THREADID_INIT(t) COMPQUIET((t), 0)
#else
#define DB_THREADID_INIT(t) memset(&(t), 0, sizeof(t))
#endif
/*
* These macros are used when an error condition is first noticed. They allow
* one to be notified (via e.g. DTrace, SystemTap, ...) when an error occurs
@ -539,8 +548,9 @@ typedef enum {
DB_APP_NONE=0, /* No type (region). */
DB_APP_DATA, /* Data file. */
DB_APP_LOG, /* Log file. */
DB_APP_TMP, /* Temporary file. */
DB_APP_RECOVER /* We are in recovery. */
DB_APP_META, /* Persistent metadata file. */
DB_APP_RECOVER, /* We are in recovery. */
DB_APP_TMP /* Temporary file. */
} APPNAME;
/*
@ -741,6 +751,18 @@ typedef struct __flag_map {
u_int32_t inflag, outflag;
} FLAG_MAP;
typedef struct __db_backup_handle {
int (*open) __P((DB_ENV *, const char *, const char *, void **));
int (*write) __P((DB_ENV *,
u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *));
int (*close) __P((DB_ENV *, const char *, void *));
u_int32_t size;
u_int32_t read_count;
u_int32_t read_sleep;
#define BACKUP_WRITE_DIRECT 0x0001
int flags;
} DB_BACKUP;
/*
* Internal database environment structure.
*
@ -815,6 +837,8 @@ struct __env {
DB_REP *rep_handle; /* Replication handle */
DB_TXNMGR *tx_handle; /* Txn handle */
DB_BACKUP *backup_handle; /* database copy configuration. */
/*
* XA support.
*/

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2009, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2009, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2005, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2005, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -12,7 +12,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
int db_archive_main __P((int, char *[]));
@ -76,6 +76,12 @@ db_archive_main(argc, argv)
LF_SET(DB_ARCH_LOG);
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5135",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -12,7 +12,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
int db_checkpoint_main __P((int, char *[]));
@ -89,6 +89,12 @@ db_checkpoint_main(argc, argv)
logfile = optarg;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5134",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -12,7 +12,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
int db_deadlock_main __P((int, char *[]));
@ -102,6 +102,12 @@ db_deadlock_main(argc, argv)
logfile = optarg;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5136",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -14,7 +14,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
int db_dump_db_init __P((DB_ENV *, char *, int, u_int32_t, int *));
@ -112,6 +112,12 @@ db_dump_main(argc, argv)
nflag = 1;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5130",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {
@ -182,9 +188,9 @@ db_dump_main(argc, argv)
return (EXIT_FAILURE);
}
if ((mflag || sflag) && rflag) {
if (sflag && rflag) {
fprintf(stderr, DB_STR_A("5114",
"%s: the -r or R options may not be specified with -m or -s\n",
"%s: the -r or R options may not be specified with -s\n",
"%s\n"), progname);
return (EXIT_FAILURE);
}
@ -248,7 +254,7 @@ retry: if ((ret = db_env_create(&dbenv, 0)) != 0) {
*/
if (rflag) {
/* The verify method is a destructor. */
ret = dbp->verify(dbp, filename, NULL, stdout,
ret = dbp->verify(dbp, filename, dbname, stdout,
DB_SALVAGE |
(Rflag ? DB_AGGRESSIVE : 0) |
(pflag ? DB_PRINTABLE : 0));

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -14,7 +14,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
typedef struct { /* XXX: Globals. */
@ -91,9 +91,7 @@ db_load_main(argc, argv)
else
++progname;
if ((exitval = db_load_version_check()) != 0)
goto done;
clist = NULL;
ldg.progname = progname;
ldg.lineno = 0;
ldg.endodata = ldg.endofile = 0;
@ -103,6 +101,9 @@ db_load_main(argc, argv)
ldg.home = NULL;
ldg.passwd = NULL;
if ((exitval = db_load_version_check()) != 0)
goto done;
mode = NOTSET;
ldf = 0;
exitval = existed = 0;
@ -224,7 +225,8 @@ db_load_main(argc, argv)
goto done;
case 'V':
printf("%s\n", db_version(NULL, NULL, NULL));
return (EXIT_SUCCESS);
exitval = (EXIT_SUCCESS);
goto done;
case '?':
default:
exitval = db_load_usage();
@ -278,7 +280,10 @@ err: exitval = 1;
/* Resend any caught signal. */
__db_util_sigresend();
free(clist);
done:
if (clist != NULL)
free(clist);
if (ldg.passwd != NULL)
free(ldg.passwd);
@ -289,7 +294,6 @@ err: exitval = 1;
* 0 is implementation-defined by the ANSI C standard. I don't see
* any good solutions that don't involve API changes.
*/
done:
return (exitval == 0 ? (existed == 0 ? 0 : 1) : 2);
}
@ -770,6 +774,7 @@ err: dbenv->err(dbenv, ret, "DB_ENV->open");
NUMBER(name, value, "extentsize", set_q_extentsize, u_int32_t); \
NUMBER(name, value, "h_ffactor", set_h_ffactor, u_int32_t); \
NUMBER(name, value, "h_nelem", set_h_nelem, u_int32_t); \
NUMBER(name, value, "heap_regionsize", set_heap_regionsize, u_int32_t);\
NUMBER(name, value, "re_len", set_re_len, u_int32_t); \
STRING(name, value, "re_pad", set_re_pad); \
FLAG(name, value, "recnum", DB_RECNUM); \

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id: db_log_verify.c,v 0f73af5ae3da 2010/05/10 05:38:40 alexander $
*/

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -21,7 +21,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
int db_printlog_print_app_record __P((DB_ENV *, DBT *, DB_LSN *, db_recops));
@ -116,6 +116,12 @@ db_printlog_main(argc, argv)
nflag = 1;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5138",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {
@ -318,6 +324,10 @@ db_printlog_main(argc, argv)
err: exitval = 1;
}
if (dtab.int_dispatch != NULL)
__os_free(env, dtab.int_dispatch);
if (dtab.ext_dispatch != NULL)
__os_free(env, dtab.ext_dispatch);
/*
* Call __db_close to free the dummy DB handles that were used
* by the print routines.
@ -646,8 +656,8 @@ db_printlog_open_rep_db(dbenv, dbpp, dbcp)
}
dbp = *dbpp;
if ((ret =
dbp->open(dbp, NULL, REPDBNAME, NULL, DB_BTREE, 0, 0)) != 0) {
if ((ret = dbp->open(dbp, NULL,
REPDBNAME, NULL, DB_BTREE, DB_RDONLY, 0)) != 0) {
dbenv->err(dbenv, ret, "DB->open");
goto err;
}

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -12,7 +12,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
void db_recover_feedback __P((DB_ENV *, int, int));
@ -78,6 +78,12 @@ db_recover_main(argc, argv)
home = optarg;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5137",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -12,7 +12,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
typedef enum { T_NOTSET, T_DB,
@ -164,6 +164,12 @@ db_stat_main(argc, argv)
nflag = 1;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5139",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {

View file

@ -1,7 +1,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2011, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*
@ -54,7 +54,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 2011, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
/*
@ -153,7 +153,6 @@ db_tuner_main(argc, argv)
char *argv[];
{
extern char *optarg;
extern int optind, __db_getopt_reset;
DB *dbp;
DB_ENV *dbenv;
DBTYPE dbtype;

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -12,7 +12,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
int db_upgrade_main __P((int, char *[]));
@ -70,6 +70,12 @@ db_upgrade_main(argc, argv)
nflag = 1;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5131",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {

View file

@ -1,7 +1,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -12,7 +12,7 @@
#ifndef lint
static const char copyright[] =
"Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.\n";
"Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.\n";
#endif
int db_verify_main __P((int, char *[]));
@ -45,9 +45,9 @@ db_verify_main(argc, argv)
DB *dbp, *dbp1;
DB_ENV *dbenv;
u_int32_t flags, cache;
int ch, exitval, nflag, private;
int ch, exitval, mflag, nflag, private;
int quiet, resize, ret;
char *home, *passwd;
char *dname, *fname, *home, *passwd;
if ((progname = __db_rpath(argv[0])) == NULL)
progname = argv[0];
@ -60,19 +60,28 @@ db_verify_main(argc, argv)
dbenv = NULL;
dbp = NULL;
cache = MEGABYTE;
exitval = nflag = quiet = 0;
exitval = mflag = nflag = quiet = 0;
flags = 0;
home = passwd = NULL;
__db_getopt_reset = 1;
while ((ch = getopt(argc, argv, "h:NoP:quV")) != EOF)
while ((ch = getopt(argc, argv, "h:mNoP:quV")) != EOF)
switch (ch) {
case 'h':
home = optarg;
break;
case 'm':
mflag = 1;
break;
case 'N':
nflag = 1;
break;
case 'P':
if (passwd != NULL) {
fprintf(stderr, DB_STR("5132",
"Password may not be specified twice"));
free(passwd);
return (EXIT_FAILURE);
}
passwd = strdup(optarg);
memset(optarg, 0, strlen(optarg));
if (passwd == NULL) {
@ -103,6 +112,14 @@ db_verify_main(argc, argv)
if (argc <= 0)
return (db_verify_usage());
if (mflag) {
dname = argv[0];
fname = NULL;
} else {
fname = argv[0];
dname = NULL;
}
/* Handle possible interruptions. */
__db_util_siginit();
@ -202,7 +219,7 @@ retry: if ((ret = db_env_create(&dbenv, 0)) != 0) {
}
ret = dbp1->open(dbp1,
NULL, argv[0], NULL, DB_UNKNOWN, DB_RDONLY, 0);
NULL, fname, dname, DB_UNKNOWN, DB_RDONLY, 0);
/*
* If we get here, we can check the cache/page.
@ -228,7 +245,7 @@ retry: if ((ret = db_env_create(&dbenv, 0)) != 0) {
}
/* The verify method is a destructor. */
ret = dbp->verify(dbp, argv[0], NULL, NULL, flags);
ret = dbp->verify(dbp, fname, dname, NULL, flags);
dbp = NULL;
if (ret != 0)
exitval = 1;

View file

@ -1,25 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql", "db_sql.vcproj", "{ACE41B30-04BB-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql", "VS8\db_sql.vcproj"", "{ACE41B30-04BB-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{CDE1C264-5E6C-11DF-AC8B-D58FDFD72085} = {CDE1C264-5E6C-11DF-AC8B-D58FDFD72085}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wce_sql", "wce_sql.vcproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wce_sql", "VS8\wce_sql.vcproj"", "{75DF98AA-25DF-4183-A022-024CF918480D}"
ProjectSection(ProjectDependencies) = postProject
{ACE41B30-04BB-11DF-8A39-0800200C9A66} = {ACE41B30-04BB-11DF-8A39-0800200C9A66}
{CDE1C264-5E6C-11DF-AC8B-D58FDFD72085} = {CDE1C264-5E6C-11DF-AC8B-D58FDFD72085}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wce_tpcb", "wce_tpcb.vcproj", "{F2CE670A-ABAE-414A-9A17-8079AB58613F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wce_tpcb", "VS8\wce_tpcb.vcproj"", "{F2CE670A-ABAE-414A-9A17-8079AB58613F}"
ProjectSection(ProjectDependencies) = postProject
{CDE1C264-5E6C-11DF-AC8B-D58FDFD72085} = {CDE1C264-5E6C-11DF-AC8B-D58FDFD72085}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "db.vcproj", "{CDE1C264-5E6C-11DF-AC8B-D58FDFD72085}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "VS8\db.vcproj"", "{CDE1C264-5E6C-11DF-AC8B-D58FDFD72085}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_small", "db_small.vcproj", "{F016AF0B-CBFD-4083-B501-4A1D0A934A2D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_small", "VS8\db_small.vcproj"", "{F016AF0B-CBFD-4083-B501-4A1D0A934A2D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

285
build_wince/VS8/db.vcproj Normal file
View file

@ -0,0 +1,285 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="db" ProjectGUID="{CDE1C264-5E6C-11DF-AC8B-D58FDFD72085}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Static Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DIAGNOSTIC;;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb53sd.lib"/></Configuration>
<Configuration Name="Static Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb53s.lib"/></Configuration>
<Configuration Name="Static Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DIAGNOSTIC;;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb53sd.lib"/></Configuration>
<Configuration Name="Static Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb53s.lib"/></Configuration>
<Configuration Name="Static Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DIAGNOSTIC;;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb53sd.lib"/></Configuration>
<Configuration Name="Static Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb53s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\..\src\btree\bt_compact.c"/>
<File RelativePath="..\..\src\btree\bt_compare.c"/>
<File RelativePath="..\..\src\btree\bt_conv.c"/>
<File RelativePath="..\..\src\btree\bt_curadj.c"/>
<File RelativePath="..\..\src\btree\bt_cursor.c"/>
<File RelativePath="..\..\src\btree\bt_delete.c"/>
<File RelativePath="..\..\src\btree\bt_method.c"/>
<File RelativePath="..\..\src\btree\bt_open.c"/>
<File RelativePath="..\..\src\btree\bt_put.c"/>
<File RelativePath="..\..\src\btree\bt_rec.c"/>
<File RelativePath="..\..\src\btree\bt_reclaim.c"/>
<File RelativePath="..\..\src\btree\bt_recno.c"/>
<File RelativePath="..\..\src\btree\bt_rsearch.c"/>
<File RelativePath="..\..\src\btree\bt_search.c"/>
<File RelativePath="..\..\src\btree\bt_split.c"/>
<File RelativePath="..\..\src\btree\bt_stat.c"/>
<File RelativePath="..\..\src\btree\btree_auto.c"/>
<File RelativePath="..\..\src\btree\bt_verify.c"/>
<File RelativePath="..\..\src\clib\bsearch.c"/>
<File RelativePath="..\..\src\clib\strdup.c"/>
<File RelativePath="..\..\src\clib\strerror.c"/>
<File RelativePath="..\..\src\clib\strsep.c"/>
<File RelativePath="..\..\src\clib\time.c"/>
<File RelativePath="..\..\src\common\clock.c"/>
<File RelativePath="..\..\src\common\db_byteorder.c"/>
<File RelativePath="..\..\src\common\db_compint.c"/>
<File RelativePath="..\..\src\common\db_err.c"/>
<File RelativePath="..\..\src\common\db_getlong.c"/>
<File RelativePath="..\..\src\common\db_idspace.c"/>
<File RelativePath="..\..\src\common\db_log2.c"/>
<File RelativePath="..\..\src\common\db_shash.c"/>
<File RelativePath="..\..\src\common\dbt.c"/>
<File RelativePath="..\..\src\common\mkpath.c"/>
<File RelativePath="..\..\src\common\util_cache.c"/>
<File RelativePath="..\..\src\common\util_log.c"/>
<File RelativePath="..\..\src\common\zerofill.c"/>
<File RelativePath="..\..\src\crypto\aes_method.c"/>
<File RelativePath="..\..\src\crypto\crypto.c"/>
<File RelativePath="..\..\src\crypto\mersenne\mt19937db.c"/>
<File RelativePath="..\..\src\crypto\rijndael\rijndael-alg-fst.c"/>
<File RelativePath="..\..\src\crypto\rijndael\rijndael-api-fst.c"/>
<File RelativePath="..\..\src\db\crdel_auto.c"/>
<File RelativePath="..\..\src\db\crdel_rec.c"/>
<File RelativePath="..\..\src\db\db.c"/>
<File RelativePath="..\..\src\db\db_am.c"/>
<File RelativePath="..\..\src\db\db_auto.c"/>
<File RelativePath="..\..\src\db\db_backup.c"/>
<File RelativePath="..\..\src\db\db_cam.c"/>
<File RelativePath="..\..\src\db\db_cds.c"/>
<File RelativePath="..\..\src\db\db_compact.c"/>
<File RelativePath="..\..\src\db\db_conv.c"/>
<File RelativePath="..\..\src\db\db_copy.c"/>
<File RelativePath="..\..\src\db\db_dispatch.c"/>
<File RelativePath="..\..\src\db\db_dup.c"/>
<File RelativePath="..\..\src\db\db_iface.c"/>
<File RelativePath="..\..\src\db\db_join.c"/>
<File RelativePath="..\..\src\db\db_meta.c"/>
<File RelativePath="..\..\src\db\db_method.c"/>
<File RelativePath="..\..\src\db\db_open.c"/>
<File RelativePath="..\..\src\db\db_overflow.c"/>
<File RelativePath="..\..\src\db\db_ovfl_vrfy.c"/>
<File RelativePath="..\..\src\db\db_pr.c"/>
<File RelativePath="..\..\src\db\db_rec.c"/>
<File RelativePath="..\..\src\db\db_reclaim.c"/>
<File RelativePath="..\..\src\db\db_remove.c"/>
<File RelativePath="..\..\src\db\db_rename.c"/>
<File RelativePath="..\..\src\db\db_ret.c"/>
<File RelativePath="..\..\src\db\db_setid.c"/>
<File RelativePath="..\..\src\db\db_setlsn.c"/>
<File RelativePath="..\..\src\db\db_sort_multiple.c"/>
<File RelativePath="..\..\src\db\db_stati.c"/>
<File RelativePath="..\..\src\db\db_truncate.c"/>
<File RelativePath="..\..\src\db\db_upg.c"/>
<File RelativePath="..\..\src\db\db_vrfy.c"/>
<File RelativePath="..\..\src\db\db_vrfyutil.c"/>
<File RelativePath="..\..\src\db\partition.c"/>
<File RelativePath="..\..\src\dbreg\dbreg.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_auto.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_rec.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_stat.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_util.c"/>
<File RelativePath="..\..\src\env\env_alloc.c"/>
<File RelativePath="..\..\src\env\env_backup.c"/>
<File RelativePath="..\..\src\env\env_config.c"/>
<File RelativePath="..\..\src\env\env_failchk.c"/>
<File RelativePath="..\..\src\env\env_file.c"/>
<File RelativePath="..\..\src\env\env_globals.c"/>
<File RelativePath="..\..\src\env\env_method.c"/>
<File RelativePath="..\..\src\env\env_name.c"/>
<File RelativePath="..\..\src\env\env_open.c"/>
<File RelativePath="..\..\src\env\env_recover.c"/>
<File RelativePath="..\..\src\env\env_region.c"/>
<File RelativePath="..\..\src\env\env_register.c"/>
<File RelativePath="..\..\src\env\env_sig.c"/>
<File RelativePath="..\..\src\env\env_stat.c"/>
<File RelativePath="..\..\src\fileops\fileops_auto.c"/>
<File RelativePath="..\..\src\fileops\fop_basic.c"/>
<File RelativePath="..\..\src\fileops\fop_rec.c"/>
<File RelativePath="..\..\src\fileops\fop_util.c"/>
<File RelativePath="..\..\src\hash\hash.c"/>
<File RelativePath="..\..\src\hash\hash_auto.c"/>
<File RelativePath="..\..\src\hash\hash_compact.c"/>
<File RelativePath="..\..\src\hash\hash_conv.c"/>
<File RelativePath="..\..\src\hash\hash_dup.c"/>
<File RelativePath="..\..\src\hash\hash_func.c"/>
<File RelativePath="..\..\src\hash\hash_meta.c"/>
<File RelativePath="..\..\src\hash\hash_method.c"/>
<File RelativePath="..\..\src\hash\hash_open.c"/>
<File RelativePath="..\..\src\hash\hash_page.c"/>
<File RelativePath="..\..\src\hash\hash_rec.c"/>
<File RelativePath="..\..\src\hash\hash_reclaim.c"/>
<File RelativePath="..\..\src\hash\hash_stat.c"/>
<File RelativePath="..\..\src\hash\hash_verify.c"/>
<File RelativePath="..\..\src\heap\heap.c"/>
<File RelativePath="..\..\src\heap\heap_auto.c"/>
<File RelativePath="..\..\src\heap\heap_backup.c"/>
<File RelativePath="..\..\src\heap\heap_conv.c"/>
<File RelativePath="..\..\src\heap\heap_method.c"/>
<File RelativePath="..\..\src\heap\heap_open.c"/>
<File RelativePath="..\..\src\heap\heap_rec.c"/>
<File RelativePath="..\..\src\heap\heap_reclaim.c"/>
<File RelativePath="..\..\src\heap\heap_stat.c"/>
<File RelativePath="..\..\src\heap\heap_verify.c"/>
<File RelativePath="..\..\src\hmac\hmac.c"/>
<File RelativePath="..\..\src\hmac\sha1.c"/>
<File RelativePath="..\..\src\lock\lock.c"/>
<File RelativePath="..\..\src\lock\lock_deadlock.c"/>
<File RelativePath="..\..\src\lock\lock_failchk.c"/>
<File RelativePath="..\..\src\lock\lock_id.c"/>
<File RelativePath="..\..\src\lock\lock_list.c"/>
<File RelativePath="..\..\src\lock\lock_method.c"/>
<File RelativePath="..\..\src\lock\lock_region.c"/>
<File RelativePath="..\..\src\lock\lock_stat.c"/>
<File RelativePath="..\..\src\lock\lock_timer.c"/>
<File RelativePath="..\..\src\lock\lock_util.c"/>
<File RelativePath="..\..\src\log\log.c"/>
<File RelativePath="..\..\src\log\log_archive.c"/>
<File RelativePath="..\..\src\log\log_compare.c"/>
<File RelativePath="..\..\src\log\log_debug.c"/>
<File RelativePath="..\..\src\log\log_get.c"/>
<File RelativePath="..\..\src\log\log_method.c"/>
<File RelativePath="..\..\src\log\log_put.c"/>
<File RelativePath="..\..\src\log\log_stat.c"/>
<File RelativePath="..\..\src\log\log_verify.c"/>
<File RelativePath="..\..\src\log\log_verify_auto.c"/>
<File RelativePath="..\..\src\log\log_verify_int.c"/>
<File RelativePath="..\..\src\log\log_verify_util.c"/>
<File RelativePath="..\..\src\mp\mp_alloc.c"/>
<File RelativePath="..\..\src\mp\mp_backup.c"/>
<File RelativePath="..\..\src\mp\mp_bh.c"/>
<File RelativePath="..\..\src\mp\mp_fget.c"/>
<File RelativePath="..\..\src\mp\mp_fmethod.c"/>
<File RelativePath="..\..\src\mp\mp_fopen.c"/>
<File RelativePath="..\..\src\mp\mp_fput.c"/>
<File RelativePath="..\..\src\mp\mp_fset.c"/>
<File RelativePath="..\..\src\mp\mp_method.c"/>
<File RelativePath="..\..\src\mp\mp_mvcc.c"/>
<File RelativePath="..\..\src\mp\mp_region.c"/>
<File RelativePath="..\..\src\mp\mp_register.c"/>
<File RelativePath="..\..\src\mp\mp_resize.c"/>
<File RelativePath="..\..\src\mp\mp_stat.c"/>
<File RelativePath="..\..\src\mp\mp_sync.c"/>
<File RelativePath="..\..\src\mp\mp_trickle.c"/>
<File RelativePath="..\..\src\mutex\mut_alloc.c"/>
<File RelativePath="..\..\src\mutex\mut_failchk.c"/>
<File RelativePath="..\..\src\mutex\mut_method.c"/>
<File RelativePath="..\..\src\mutex\mut_region.c"/>
<File RelativePath="..\..\src\mutex\mut_stat.c"/>
<File RelativePath="..\..\src\mutex\mut_win32.c"/>
<File RelativePath="..\..\src\os\os_abort.c"/>
<File RelativePath="..\..\src\os\os_alloc.c"/>
<File RelativePath="..\..\src\os\os_path.c"/>
<File RelativePath="..\..\src\os\os_pid.c"/>
<File RelativePath="..\..\src\os\os_root.c"/>
<File RelativePath="..\..\src\os\os_rpath.c"/>
<File RelativePath="..\..\src\os\os_stack.c"/>
<File RelativePath="..\..\src\os\os_tmpdir.c"/>
<File RelativePath="..\..\src\os\os_uid.c"/>
<File RelativePath="..\..\src\os_windows\ce_ctime.c"/>
<File RelativePath="..\..\src\os_windows\os_abs.c"/>
<File RelativePath="..\..\src\os_windows\os_clock.c"/>
<File RelativePath="..\..\src\os_windows\os_config.c"/>
<File RelativePath="..\..\src\os_windows\os_cpu.c"/>
<File RelativePath="..\..\src\os_windows\os_dir.c"/>
<File RelativePath="..\..\src\os_windows\os_errno.c"/>
<File RelativePath="..\..\src\os_windows\os_fid.c"/>
<File RelativePath="..\..\src\os_windows\os_flock.c"/>
<File RelativePath="..\..\src\os_windows\os_fsync.c"/>
<File RelativePath="..\..\src\os_windows\os_getenv.c"/>
<File RelativePath="..\..\src\os_windows\os_handle.c"/>
<File RelativePath="..\..\src\os_windows\os_map.c"/>
<File RelativePath="..\..\src\os_windows\os_mkdir.c"/>
<File RelativePath="..\..\src\os_windows\os_open.c"/>
<File RelativePath="..\..\src\os_windows\os_rename.c"/>
<File RelativePath="..\..\src\os_windows\os_rw.c"/>
<File RelativePath="..\..\src\os_windows\os_seek.c"/>
<File RelativePath="..\..\src\os_windows\os_stat.c"/>
<File RelativePath="..\..\src\os_windows\os_truncate.c"/>
<File RelativePath="..\..\src\os_windows\os_unlink.c"/>
<File RelativePath="..\..\src\os_windows\os_yield.c"/>
<File RelativePath="..\..\src\qam\qam.c"/>
<File RelativePath="..\..\src\qam\qam_auto.c"/>
<File RelativePath="..\..\src\qam\qam_conv.c"/>
<File RelativePath="..\..\src\qam\qam_files.c"/>
<File RelativePath="..\..\src\qam\qam_method.c"/>
<File RelativePath="..\..\src\qam\qam_open.c"/>
<File RelativePath="..\..\src\qam\qam_rec.c"/>
<File RelativePath="..\..\src\qam\qam_stat.c"/>
<File RelativePath="..\..\src\qam\qam_upgrade.c"/>
<File RelativePath="..\..\src\qam\qam_verify.c"/>
<File RelativePath="..\..\src\rep\rep_stub.c"/>
<File RelativePath="..\..\src\repmgr\repmgr_stub.c"/>
<File RelativePath="..\..\src\sequence\seq_stat.c"/>
<File RelativePath="..\..\src\sequence\sequence.c"/>
<File RelativePath="..\..\src\txn\txn.c"/>
<File RelativePath="..\..\src\txn\txn_auto.c"/>
<File RelativePath="..\..\src\txn\txn_chkpt.c"/>
<File RelativePath="..\..\src\txn\txn_failchk.c"/>
<File RelativePath="..\..\src\txn\txn_method.c"/>
<File RelativePath="..\..\src\txn\txn_rec.c"/>
<File RelativePath="..\..\src\txn\txn_recover.c"/>
<File RelativePath="..\..\src\txn\txn_region.c"/>
<File RelativePath="..\..\src\txn\txn_stat.c"/>
<File RelativePath="..\..\src\txn\txn_util.c"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -0,0 +1,245 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="db_small" ProjectGUID="{XXX-NOT-USED-XXX}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Static Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;DIAGNOSTIC;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small53sd.lib"/></Configuration>
<Configuration Name="Static Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small53s.lib"/></Configuration>
<Configuration Name="Static Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;DIAGNOSTIC;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small53sd.lib"/></Configuration>
<Configuration Name="Static Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small53s.lib"/></Configuration>
<Configuration Name="Static Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;DIAGNOSTIC;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small53sd.lib"/></Configuration>
<Configuration Name="Static Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small53s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\..\src\btree\bt_compact.c"/>
<File RelativePath="..\..\src\btree\bt_compare.c"/>
<File RelativePath="..\..\src\btree\bt_conv.c"/>
<File RelativePath="..\..\src\btree\bt_curadj.c"/>
<File RelativePath="..\..\src\btree\bt_cursor.c"/>
<File RelativePath="..\..\src\btree\bt_delete.c"/>
<File RelativePath="..\..\src\btree\bt_method.c"/>
<File RelativePath="..\..\src\btree\bt_open.c"/>
<File RelativePath="..\..\src\btree\bt_put.c"/>
<File RelativePath="..\..\src\btree\bt_rec.c"/>
<File RelativePath="..\..\src\btree\bt_reclaim.c"/>
<File RelativePath="..\..\src\btree\bt_recno.c"/>
<File RelativePath="..\..\src\btree\bt_rsearch.c"/>
<File RelativePath="..\..\src\btree\bt_search.c"/>
<File RelativePath="..\..\src\btree\bt_split.c"/>
<File RelativePath="..\..\src\btree\bt_stat.c"/>
<File RelativePath="..\..\src\btree\btree_auto.c"/>
<File RelativePath="..\..\src\clib\bsearch.c"/>
<File RelativePath="..\..\src\clib\strdup.c"/>
<File RelativePath="..\..\src\clib\strerror.c"/>
<File RelativePath="..\..\src\clib\strsep.c"/>
<File RelativePath="..\..\src\clib\time.c"/>
<File RelativePath="..\..\src\common\clock.c"/>
<File RelativePath="..\..\src\common\crypto_stub.c"/>
<File RelativePath="..\..\src\common\db_byteorder.c"/>
<File RelativePath="..\..\src\common\db_compint.c"/>
<File RelativePath="..\..\src\common\db_err.c"/>
<File RelativePath="..\..\src\common\db_getlong.c"/>
<File RelativePath="..\..\src\common\db_idspace.c"/>
<File RelativePath="..\..\src\common\db_log2.c"/>
<File RelativePath="..\..\src\common\db_shash.c"/>
<File RelativePath="..\..\src\common\dbt.c"/>
<File RelativePath="..\..\src\common\mkpath.c"/>
<File RelativePath="..\..\src\common\util_cache.c"/>
<File RelativePath="..\..\src\common\util_log.c"/>
<File RelativePath="..\..\src\common\zerofill.c"/>
<File RelativePath="..\..\src\db\crdel_auto.c"/>
<File RelativePath="..\..\src\db\crdel_rec.c"/>
<File RelativePath="..\..\src\db\db.c"/>
<File RelativePath="..\..\src\db\db_am.c"/>
<File RelativePath="..\..\src\db\db_auto.c"/>
<File RelativePath="..\..\src\db\db_backup.c"/>
<File RelativePath="..\..\src\db\db_cam.c"/>
<File RelativePath="..\..\src\db\db_cds.c"/>
<File RelativePath="..\..\src\db\db_compact.c"/>
<File RelativePath="..\..\src\db\db_conv.c"/>
<File RelativePath="..\..\src\db\db_copy.c"/>
<File RelativePath="..\..\src\db\db_dispatch.c"/>
<File RelativePath="..\..\src\db\db_dup.c"/>
<File RelativePath="..\..\src\db\db_iface.c"/>
<File RelativePath="..\..\src\db\db_join.c"/>
<File RelativePath="..\..\src\db\db_meta.c"/>
<File RelativePath="..\..\src\db\db_method.c"/>
<File RelativePath="..\..\src\db\db_open.c"/>
<File RelativePath="..\..\src\db\db_overflow.c"/>
<File RelativePath="..\..\src\db\db_pr.c"/>
<File RelativePath="..\..\src\db\db_rec.c"/>
<File RelativePath="..\..\src\db\db_reclaim.c"/>
<File RelativePath="..\..\src\db\db_remove.c"/>
<File RelativePath="..\..\src\db\db_rename.c"/>
<File RelativePath="..\..\src\db\db_ret.c"/>
<File RelativePath="..\..\src\db\db_setid.c"/>
<File RelativePath="..\..\src\db\db_setlsn.c"/>
<File RelativePath="..\..\src\db\db_sort_multiple.c"/>
<File RelativePath="..\..\src\db\db_stati.c"/>
<File RelativePath="..\..\src\db\db_truncate.c"/>
<File RelativePath="..\..\src\db\db_upg.c"/>
<File RelativePath="..\..\src\db\db_vrfy_stub.c"/>
<File RelativePath="..\..\src\db\partition.c"/>
<File RelativePath="..\..\src\dbreg\dbreg.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_auto.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_rec.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_stat.c"/>
<File RelativePath="..\..\src\dbreg\dbreg_util.c"/>
<File RelativePath="..\..\src\env\env_alloc.c"/>
<File RelativePath="..\..\src\env\env_backup.c"/>
<File RelativePath="..\..\src\env\env_config.c"/>
<File RelativePath="..\..\src\env\env_failchk.c"/>
<File RelativePath="..\..\src\env\env_file.c"/>
<File RelativePath="..\..\src\env\env_globals.c"/>
<File RelativePath="..\..\src\env\env_method.c"/>
<File RelativePath="..\..\src\env\env_name.c"/>
<File RelativePath="..\..\src\env\env_open.c"/>
<File RelativePath="..\..\src\env\env_recover.c"/>
<File RelativePath="..\..\src\env\env_region.c"/>
<File RelativePath="..\..\src\env\env_register.c"/>
<File RelativePath="..\..\src\env\env_sig.c"/>
<File RelativePath="..\..\src\env\env_stat.c"/>
<File RelativePath="..\..\src\fileops\fileops_auto.c"/>
<File RelativePath="..\..\src\fileops\fop_basic.c"/>
<File RelativePath="..\..\src\fileops\fop_rec.c"/>
<File RelativePath="..\..\src\fileops\fop_util.c"/>
<File RelativePath="..\..\src\hash\hash_func.c"/>
<File RelativePath="..\..\src\hash\hash_stub.c"/>
<File RelativePath="..\..\src\heap\heap_stub.c"/>
<File RelativePath="..\..\src\hmac\hmac.c"/>
<File RelativePath="..\..\src\hmac\sha1.c"/>
<File RelativePath="..\..\src\lock\lock.c"/>
<File RelativePath="..\..\src\lock\lock_deadlock.c"/>
<File RelativePath="..\..\src\lock\lock_failchk.c"/>
<File RelativePath="..\..\src\lock\lock_id.c"/>
<File RelativePath="..\..\src\lock\lock_list.c"/>
<File RelativePath="..\..\src\lock\lock_method.c"/>
<File RelativePath="..\..\src\lock\lock_region.c"/>
<File RelativePath="..\..\src\lock\lock_stat.c"/>
<File RelativePath="..\..\src\lock\lock_timer.c"/>
<File RelativePath="..\..\src\lock\lock_util.c"/>
<File RelativePath="..\..\src\log\log.c"/>
<File RelativePath="..\..\src\log\log_archive.c"/>
<File RelativePath="..\..\src\log\log_compare.c"/>
<File RelativePath="..\..\src\log\log_debug.c"/>
<File RelativePath="..\..\src\log\log_get.c"/>
<File RelativePath="..\..\src\log\log_method.c"/>
<File RelativePath="..\..\src\log\log_put.c"/>
<File RelativePath="..\..\src\log\log_stat.c"/>
<File RelativePath="..\..\src\log\log_verify_stub.c"/>
<File RelativePath="..\..\src\mp\mp_alloc.c"/>
<File RelativePath="..\..\src\mp\mp_backup.c"/>
<File RelativePath="..\..\src\mp\mp_bh.c"/>
<File RelativePath="..\..\src\mp\mp_fget.c"/>
<File RelativePath="..\..\src\mp\mp_fmethod.c"/>
<File RelativePath="..\..\src\mp\mp_fopen.c"/>
<File RelativePath="..\..\src\mp\mp_fput.c"/>
<File RelativePath="..\..\src\mp\mp_fset.c"/>
<File RelativePath="..\..\src\mp\mp_method.c"/>
<File RelativePath="..\..\src\mp\mp_mvcc.c"/>
<File RelativePath="..\..\src\mp\mp_region.c"/>
<File RelativePath="..\..\src\mp\mp_register.c"/>
<File RelativePath="..\..\src\mp\mp_resize.c"/>
<File RelativePath="..\..\src\mp\mp_stat.c"/>
<File RelativePath="..\..\src\mp\mp_sync.c"/>
<File RelativePath="..\..\src\mp\mp_trickle.c"/>
<File RelativePath="..\..\src\mutex\mut_alloc.c"/>
<File RelativePath="..\..\src\mutex\mut_failchk.c"/>
<File RelativePath="..\..\src\mutex\mut_method.c"/>
<File RelativePath="..\..\src\mutex\mut_region.c"/>
<File RelativePath="..\..\src\mutex\mut_stat.c"/>
<File RelativePath="..\..\src\mutex\mut_win32.c"/>
<File RelativePath="..\..\src\os\os_abort.c"/>
<File RelativePath="..\..\src\os\os_alloc.c"/>
<File RelativePath="..\..\src\os\os_ctime.c"/>
<File RelativePath="..\..\src\os\os_path.c"/>
<File RelativePath="..\..\src\os\os_pid.c"/>
<File RelativePath="..\..\src\os\os_root.c"/>
<File RelativePath="..\..\src\os\os_rpath.c"/>
<File RelativePath="..\..\src\os\os_stack.c"/>
<File RelativePath="..\..\src\os\os_tmpdir.c"/>
<File RelativePath="..\..\src\os\os_uid.c"/>
<File RelativePath="..\..\src\os_windows\os_abs.c"/>
<File RelativePath="..\..\src\os_windows\os_clock.c"/>
<File RelativePath="..\..\src\os_windows\os_config.c"/>
<File RelativePath="..\..\src\os_windows\os_cpu.c"/>
<File RelativePath="..\..\src\os_windows\os_dir.c"/>
<File RelativePath="..\..\src\os_windows\os_errno.c"/>
<File RelativePath="..\..\src\os_windows\os_fid.c"/>
<File RelativePath="..\..\src\os_windows\os_flock.c"/>
<File RelativePath="..\..\src\os_windows\os_fsync.c"/>
<File RelativePath="..\..\src\os_windows\os_getenv.c"/>
<File RelativePath="..\..\src\os_windows\os_handle.c"/>
<File RelativePath="..\..\src\os_windows\os_map.c"/>
<File RelativePath="..\..\src\os_windows\os_mkdir.c"/>
<File RelativePath="..\..\src\os_windows\os_open.c"/>
<File RelativePath="..\..\src\os_windows\os_rename.c"/>
<File RelativePath="..\..\src\os_windows\os_rw.c"/>
<File RelativePath="..\..\src\os_windows\os_seek.c"/>
<File RelativePath="..\..\src\os_windows\os_stat.c"/>
<File RelativePath="..\..\src\os_windows\os_truncate.c"/>
<File RelativePath="..\..\src\os_windows\os_unlink.c"/>
<File RelativePath="..\..\src\os_windows\os_yield.c"/>
<File RelativePath="..\..\src\qam\qam_stub.c"/>
<File RelativePath="..\..\src\rep\rep_stub.c"/>
<File RelativePath="..\..\src\repmgr\repmgr_stub.c"/>
<File RelativePath="..\..\src\sequence\seq_stat.c"/>
<File RelativePath="..\..\src\sequence\sequence.c"/>
<File RelativePath="..\..\src\txn\txn.c"/>
<File RelativePath="..\..\src\txn\txn_auto.c"/>
<File RelativePath="..\..\src\txn\txn_chkpt.c"/>
<File RelativePath="..\..\src\txn\txn_failchk.c"/>
<File RelativePath="..\..\src\txn\txn_method.c"/>
<File RelativePath="..\..\src\txn\txn_rec.c"/>
<File RelativePath="..\..\src\txn\txn_recover.c"/>
<File RelativePath="..\..\src\txn\txn_region.c"/>
<File RelativePath="..\..\src\txn\txn_stat.c"/>
<File RelativePath="..\..\src\txn\txn_util.c"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -0,0 +1,203 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="db_sql" ProjectGUID="{ACE41B30-04BB-11DF-8A39-0800200C9A66}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_API=__declspec(dllexport);SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_USRDLL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/libdb_sql53d.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql53d.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql53d.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_API=__declspec(dllexport);_USRDLL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/libdb_sql53.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql53.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql53.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Static Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql53sd.lib"/></Configuration>
<Configuration Name="Static Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql53s.lib"/></Configuration>
<Configuration Name="Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_API=__declspec(dllexport);SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_USRDLL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/libdb_sql53d.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql53d.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql53d.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_API=__declspec(dllexport);_USRDLL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/libdb_sql53.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql53.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql53.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Static Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql53sd.lib"/></Configuration>
<Configuration Name="Static Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql53s.lib"/></Configuration>
<Configuration Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_API=__declspec(dllexport);SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_USRDLL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/libdb_sql53d.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql53d.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql53d.lib" TargetMachine="0"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_API=__declspec(dllexport);_USRDLL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/libdb_sql53.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql53.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql53.lib" TargetMachine="0"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Static Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql53sd.lib"/></Configuration>
<Configuration Name="Static Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated,../../lang/sql/adapter,../../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_SINGLE_PROCESS;SQLITE_OMIT_WAL;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql53s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\..\lang\sql\sqlite\src\alter.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\analyze.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\attach.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\auth.c"/>
<File RelativePath="..\..\lang\sql\adapter\backup.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\bitvec.c"/>
<File RelativePath="..\..\lang\sql\adapter\btmutex.c"/>
<File RelativePath="..\..\lang\sql\adapter\btree.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\build.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\callback.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\complete.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\ctime.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\date.c"/>
<File RelativePath="..\..\lang\sql\adapter\db_encrypt.c"/>
<File RelativePath="..\..\lang\sql\adapter\db_pragma.c"/>
<File RelativePath="..\..\lang\sql\adapter\db_shell.c"/>
<File RelativePath="..\..\lang\sql\adapter\db_sequence.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\delete.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\expr.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\fault.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\fkey.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\func.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\global.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\hash.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\insert.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\journal.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\legacy.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\loadext.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\main.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\malloc.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\mem0.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\mem1.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\mem2.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\memjournal.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\mutex.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\mutex_noop.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\mutex_w32.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\notify.c"/>
<File RelativePath="..\..\lang\sql\generated\opcodes.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\os.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\os_win.c"/>
<File RelativePath="..\..\lang\sql\adapter\pager.c"/>
<File RelativePath="..\..\lang\sql\generated\parse.c"/>
<File RelativePath="..\..\lang\sql\adapter\pcache.c"/>
<File RelativePath="..\..\lang\sql\adapter\pcache1.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\pragma.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\prepare.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\printf.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\random.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\resolve.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\rowset.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\select.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\status.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\table.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\tokenize.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\trigger.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\update.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\utf.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\util.c"/>
<File RelativePath="..\..\lang\sql\adapter\vacuum.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\vdbe.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\vdbeapi.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\vdbeaux.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\vdbeblob.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\vdbemem.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\vdbetrace.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\vtab.c"/>
<File RelativePath="..\..\lang\sql\adapter\wal.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\walker.c"/>
<File RelativePath="..\..\lang\sql\sqlite\src\where.c"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -0,0 +1,94 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="wce_sql" ProjectGUID="{75DF98AA-25DF-4183-A022-024CF918480D}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src,../../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\..\examples\sql\wce_sql\excxx_wce_sql.cpp"/>
<File RelativePath="..\..\examples\sql\wce_sql\excxx_wce_sqlDlg.cpp"/>
<File RelativePath="..\..\examples\sql\wce_sql\stdafx.cpp"/>
<File RelativePath="..\..\examples\sql\wce_sql\excxx_wce_sql.h"/>
<File RelativePath="..\..\examples\sql\wce_sql\excxx_wce_sqlDlg.h"/>
<File RelativePath="..\..\examples\sql\wce_sql\Resourceppc.h"/>
<File RelativePath="..\..\examples\sql\wce_sql\stdafx.h"/>
<File RelativePath="..\..\examples\sql\wce_sql\excxx_wce_sql.ico"/>
<File RelativePath="..\..\examples\sql\wce_sql\excxx_wce_sqlppc.rc"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -0,0 +1,88 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="wce_tpcb" ProjectGUID="{F2CE670A-ABAE-414A-9A17-8079AB58613F}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../../build_wince,../../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\..\examples\cxx\wce_tpcb\TpcbExample.cpp"/>
<File RelativePath="..\..\examples\cxx\wce_tpcb\TpcbUI.cpp"/>
<File RelativePath="..\..\examples\cxx\wce_tpcb\wce_tpcb.rc"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -2,7 +2,7 @@
/*
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*
@ -60,10 +60,10 @@ extern "C" {
#define DB_VERSION_FAMILY 11
#define DB_VERSION_RELEASE 2
#define DB_VERSION_MAJOR 5
#define DB_VERSION_MINOR 2
#define DB_VERSION_PATCH 36
#define DB_VERSION_STRING "Berkeley DB 5.2.36: (September 14, 2011)"
#define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library version 11.2.5.2.36: (September 14, 2011)"
#define DB_VERSION_MINOR 3
#define DB_VERSION_PATCH 21
#define DB_VERSION_STRING "Berkeley DB 5.3.21: (May 11, 2012)"
#define DB_VERSION_FULL_STRING "Berkeley DB 11g Release 2, library version 11.2.5.3.21: (May 11, 2012)"
/*
* !!!
@ -500,10 +500,10 @@ struct __db_lockreq {
/*******************************************************
* Logging.
*******************************************************/
#define DB_LOGVERSION 18 /* Current log version. */
#define DB_LOGVERSION_LATCHING 15 /* Log version using latching. */
#define DB_LOGCHKSUM 12 /* Check sum headers. */
#define DB_LOGOLDVER 8 /* Oldest log version supported. */
#define DB_LOGVERSION 19 /* Current log version. */
#define DB_LOGVERSION_LATCHING 15 /* Log version using latching: db-4.8 */
#define DB_LOGCHKSUM 12 /* Check sum headers: db-4.5 */
#define DB_LOGOLDVER 8 /* Oldest version supported: db-4.2 */
#define DB_LOGMAGIC 0x040988
/*
@ -576,7 +576,7 @@ struct __db_log_stat { /* SHARED */
u_int32_t st_lg_size; /* Log file size. */
u_int32_t st_wc_bytes; /* Bytes to log since checkpoint. */
u_int32_t st_wc_mbytes; /* Megabytes to log since checkpoint. */
u_int32_t st_fileid_init; /* Inital allocation for fileids. */
u_int32_t st_fileid_init; /* Initial allocation for fileids. */
#ifndef __TEST_DB_NO_STATISTICS
u_int32_t st_nfileid; /* Current number of fileids. */
u_int32_t st_maxnfileid; /* Maximum number of fileids used. */
@ -739,11 +739,12 @@ struct __db_mpoolfile {
* multiple threads of control.
*/
#define MP_FILEID_SET 0x001 /* Application supplied a file ID. */
#define MP_FLUSH 0x002 /* Was opened to flush a buffer. */
#define MP_MULTIVERSION 0x004 /* Opened for multiversion access. */
#define MP_OPEN_CALLED 0x008 /* File opened. */
#define MP_READONLY 0x010 /* File is readonly. */
#define MP_DUMMY 0x020 /* File is dummy for __memp_fput. */
#define MP_FLUSH 0x002 /* Was used to flush a buffer. */
#define MP_FOR_FLUSH 0x004 /* Was opened to flush a buffer. */
#define MP_MULTIVERSION 0x008 /* Opened for multiversion access. */
#define MP_OPEN_CALLED 0x010 /* File opened. */
#define MP_READONLY 0x020 /* File is readonly. */
#define MP_DUMMY 0x040 /* File is dummy for __memp_fput. */
u_int32_t flags;
};
@ -811,6 +812,7 @@ struct __db_mpool_fstat {
uintmax_t st_page_create; /* Pages created in the cache. */
uintmax_t st_page_in; /* Pages read in. */
uintmax_t st_page_out; /* Pages written out. */
uintmax_t st_backup_spins; /* Number of spins during a copy. */
#endif
char *file_name; /* File name. */
};
@ -1430,18 +1432,19 @@ typedef enum {
/* DB (private) error return codes. */
#define DB_ALREADY_ABORTED (-30899)
#define DB_DELETED (-30898)/* Recovery file marked deleted. */
#define DB_EVENT_NOT_HANDLED (-30897)/* Forward event to application. */
#define DB_NEEDSPLIT (-30896)/* Page needs to be split. */
#define DB_REP_BULKOVF (-30895)/* Rep bulk buffer overflow. */
#define DB_REP_LOGREADY (-30894)/* Rep log ready for recovery. */
#define DB_REP_NEWMASTER (-30893)/* We have learned of a new master. */
#define DB_REP_PAGEDONE (-30892)/* This page was already done. */
#define DB_SURPRISE_KID (-30891)/* Child commit where parent
#define DB_CHKSUM_FAIL (-30898)/* Checksum failed. */
#define DB_DELETED (-30897)/* Recovery file marked deleted. */
#define DB_EVENT_NOT_HANDLED (-30896)/* Forward event to application. */
#define DB_NEEDSPLIT (-30895)/* Page needs to be split. */
#define DB_REP_BULKOVF (-30894)/* Rep bulk buffer overflow. */
#define DB_REP_LOGREADY (-30893)/* Rep log ready for recovery. */
#define DB_REP_NEWMASTER (-30892)/* We have learned of a new master. */
#define DB_REP_PAGEDONE (-30891)/* This page was already done. */
#define DB_SURPRISE_KID (-30890)/* Child commit where parent
didn't know it was a parent. */
#define DB_SWAPBYTES (-30890)/* Database needs byte swapping. */
#define DB_TXN_CKP (-30889)/* Encountered ckp record in log. */
#define DB_VERIFY_FATAL (-30888)/* DB->verify cannot proceed. */
#define DB_SWAPBYTES (-30889)/* Database needs byte swapping. */
#define DB_TXN_CKP (-30888)/* Encountered ckp record in log. */
#define DB_VERIFY_FATAL (-30887)/* DB->verify cannot proceed. */
/* Database handle. */
struct __db {
@ -1681,6 +1684,8 @@ struct __db {
__P((DB *, u_int32_t (**)(DB *, const void *, u_int32_t)));
int (*get_h_nelem) __P((DB *, u_int32_t *));
int (*get_heapsize) __P((DB *, u_int32_t *, u_int32_t *));
int (*get_heap_regionsize) __P((DB *, u_int32_t *));
int (*get_lk_exclusive) __P((DB *, int *, int *));
int (*get_lorder) __P((DB *, int *));
DB_MPOOLFILE *(*get_mpf) __P((DB *));
void (*get_msgcall) __P((DB *,
@ -1740,6 +1745,8 @@ struct __db {
__P((DB *, u_int32_t (*)(DB *, const void *, u_int32_t)));
int (*set_h_nelem) __P((DB *, u_int32_t));
int (*set_heapsize) __P((DB *, u_int32_t, u_int32_t, u_int32_t));
int (*set_heap_regionsize) __P((DB *, u_int32_t));
int (*set_lk_exclusive) __P((DB *, int));
int (*set_lorder) __P((DB *, int));
void (*set_msgcall) __P((DB *, void (*)(const DB_ENV *, const char *)));
void (*set_msgfile) __P((DB *, FILE *));
@ -1815,21 +1822,28 @@ struct __db {
#define DB_AM_NOT_DURABLE 0x00008000 /* Do not log changes */
#define DB_AM_OPEN_CALLED 0x00010000 /* DB->open called */
#define DB_AM_PAD 0x00020000 /* Fixed-length record pad */
#define DB_AM_PGDEF 0x00040000 /* Page size was defaulted */
#define DB_AM_RDONLY 0x00080000 /* Database is readonly */
#define DB_AM_READ_UNCOMMITTED 0x00100000 /* Support degree 1 isolation */
#define DB_AM_RECNUM 0x00200000 /* DB_RECNUM */
#define DB_AM_RECOVER 0x00400000 /* DB opened by recovery routine */
#define DB_AM_RENUMBER 0x00800000 /* DB_RENUMBER */
#define DB_AM_REVSPLITOFF 0x01000000 /* DB_REVSPLITOFF */
#define DB_AM_SECONDARY 0x02000000 /* Database is a secondary index */
#define DB_AM_SNAPSHOT 0x04000000 /* DB_SNAPSHOT */
#define DB_AM_SUBDB 0x08000000 /* Subdatabases supported */
#define DB_AM_SWAP 0x10000000 /* Pages need to be byte-swapped */
#define DB_AM_TXN 0x20000000 /* Opened in a transaction */
#define DB_AM_VERIFYING 0x40000000 /* DB handle is in the verifier */
#define DB_AM_PARTDB 0x00040000 /* Handle for a database partition */
#define DB_AM_PGDEF 0x00080000 /* Page size was defaulted */
#define DB_AM_RDONLY 0x00100000 /* Database is readonly */
#define DB_AM_READ_UNCOMMITTED 0x00200000 /* Support degree 1 isolation */
#define DB_AM_RECNUM 0x00400000 /* DB_RECNUM */
#define DB_AM_RECOVER 0x00800000 /* DB opened by recovery routine */
#define DB_AM_RENUMBER 0x01000000 /* DB_RENUMBER */
#define DB_AM_REVSPLITOFF 0x02000000 /* DB_REVSPLITOFF */
#define DB_AM_SECONDARY 0x04000000 /* Database is a secondary index */
#define DB_AM_SNAPSHOT 0x08000000 /* DB_SNAPSHOT */
#define DB_AM_SUBDB 0x10000000 /* Subdatabases supported */
#define DB_AM_SWAP 0x20000000 /* Pages need to be byte-swapped */
#define DB_AM_TXN 0x40000000 /* Opened in a transaction */
#define DB_AM_VERIFYING 0x80000000 /* DB handle is in the verifier */
u_int32_t orig_flags; /* Flags at open, for refresh */
u_int32_t flags;
#define DB2_AM_EXCL 0x00000001 /* Exclusively lock the handle */
#define DB2_AM_INTEXCL 0x00000002 /* Internal exclusive lock. */
#define DB2_AM_NOWAIT 0x00000004 /* Do not wait for handle lock */
u_int32_t orig_flags2; /* Second flags word; for refresh */
u_int32_t flags2; /* Second flags word */
};
/*
@ -2229,6 +2243,7 @@ struct __db_heap_stat { /* SHARED */
u_int32_t heap_pagecnt; /* Page count. */
u_int32_t heap_pagesize; /* Page size. */
u_int32_t heap_nregions; /* Number of regions. */
u_int32_t heap_regionsize; /* Number of pages in a region. */
};
/* Queue statistics structure. */
@ -2279,6 +2294,16 @@ typedef enum {
DB_MEM_THREAD=6
} DB_MEM_CONFIG;
/*
* Backup configuration types.
*/
typedef enum {
DB_BACKUP_READ_COUNT = 1,
DB_BACKUP_READ_SLEEP = 2,
DB_BACKUP_SIZE = 3,
DB_BACKUP_WRITE_DIRECT = 4
} DB_BACKUP_CONFIG;
struct __db_env {
ENV *env; /* Linked ENV structure */
@ -2311,6 +2336,7 @@ struct __db_env {
/* Application specified paths */
char *db_log_dir; /* Database log file directory */
char *db_md_dir; /* Persistent metadata directory */
char *db_tmp_dir; /* Database tmp file directory */
char *db_create_dir; /* Create directory for data files */
@ -2425,8 +2451,10 @@ struct __db_env {
/* DB_ENV PUBLIC HANDLE LIST BEGIN */
int (*add_data_dir) __P((DB_ENV *, const char *));
int (*backup) __P((DB_ENV *, const char *, u_int32_t));
int (*cdsgroup_begin) __P((DB_ENV *, DB_TXN **));
int (*close) __P((DB_ENV *, u_int32_t));
int (*dbbackup) __P((DB_ENV *, const char *, const char *, u_int32_t));
int (*dbremove) __P((DB_ENV *,
DB_TXN *, const char *, const char *, u_int32_t));
int (*dbrename) __P((DB_ENV *,
@ -2444,6 +2472,11 @@ struct __db_env {
int (*get_create_dir) __P((DB_ENV *, const char **));
int (*get_data_dirs) __P((DB_ENV *, const char ***));
int (*get_data_len) __P((DB_ENV *, u_int32_t *));
int (*get_backup_callbacks) __P((DB_ENV *,
int (**)(DB_ENV *, const char *, const char *, void **),
int (**)(DB_ENV *, u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *),
int (**)(DB_ENV *, const char *, void *)));
int (*get_backup_config) __P((DB_ENV *, DB_BACKUP_CONFIG, u_int32_t *));
int (*get_encrypt_flags) __P((DB_ENV *, u_int32_t *));
void (*get_errcall) __P((DB_ENV *,
void (**)(const DB_ENV *, const char *, const char *)));
@ -2470,6 +2503,7 @@ struct __db_env {
int (*get_lk_tablesize) __P((DB_ENV *, u_int32_t *));
int (*get_memory_init) __P((DB_ENV *, DB_MEM_CONFIG, u_int32_t *));
int (*get_memory_max) __P((DB_ENV *, u_int32_t *, u_int32_t *));
int (*get_metadata_dir) __P((DB_ENV *, const char **));
int (*get_mp_max_openfd) __P((DB_ENV *, int *));
int (*get_mp_max_write) __P((DB_ENV *, int *, db_timeout_t *));
int (*get_mp_mmapsize) __P((DB_ENV *, size_t *));
@ -2592,6 +2626,12 @@ struct __db_env {
int (*set_create_dir) __P((DB_ENV *, const char *));
int (*set_data_dir) __P((DB_ENV *, const char *));
int (*set_data_len) __P((DB_ENV *, u_int32_t));
int (*set_backup_callbacks) __P((DB_ENV *,
int (*)(DB_ENV *, const char *, const char *, void **),
int (*)(DB_ENV *, u_int32_t,
u_int32_t, u_int32_t, u_int8_t *, void *),
int (*)(DB_ENV *, const char *, void *)));
int (*set_backup_config) __P((DB_ENV *, DB_BACKUP_CONFIG, u_int32_t));
int (*set_encrypt) __P((DB_ENV *, const char *, u_int32_t));
void (*set_errcall) __P((DB_ENV *,
void (*)(const DB_ENV *, const char *, const char *)));
@ -2619,6 +2659,7 @@ struct __db_env {
int (*set_lk_tablesize) __P((DB_ENV *, u_int32_t));
int (*set_memory_init) __P((DB_ENV *, DB_MEM_CONFIG, u_int32_t));
int (*set_memory_max) __P((DB_ENV *, u_int32_t, u_int32_t));
int (*set_metadata_dir) __P((DB_ENV *, const char *));
int (*set_mp_max_openfd) __P((DB_ENV *, int));
int (*set_mp_max_write) __P((DB_ENV *, int, db_timeout_t));
int (*set_mp_mmapsize) __P((DB_ENV *, size_t));
@ -2808,30 +2849,35 @@ typedef struct entry {
#define DB_ARCH_LOG 0x00000004
#define DB_ARCH_REMOVE 0x00000008
#define DB_AUTO_COMMIT 0x00000100
#define DB_BACKUP_CLEAN 0x00000002
#define DB_BACKUP_FILES 0x00000008
#define DB_BACKUP_NO_LOGS 0x00000010
#define DB_BACKUP_SINGLE_DIR 0x00000020
#define DB_BACKUP_UPDATE 0x00000040
#define DB_BOOTSTRAP_HELPER 0x00000001
#define DB_CDB_ALLDB 0x00000040
#define DB_CHKSUM 0x00000008
#define DB_CKP_INTERNAL 0x00000002
#define DB_CREATE 0x00000001
#define DB_CURSOR_BULK 0x00000001
#define DB_CURSOR_TRANSIENT 0x00000004
#define DB_CURSOR_TRANSIENT 0x00000008
#define DB_CXX_NO_EXCEPTIONS 0x00000002
#define DB_DATABASE_LOCKING 0x00000080
#define DB_DIRECT 0x00000010
#define DB_DIRECT 0x00000020
#define DB_DIRECT_DB 0x00000200
#define DB_DSYNC_DB 0x00000400
#define DB_DUP 0x00000010
#define DB_DUPSORT 0x00000004
#define DB_DURABLE_UNKNOWN 0x00000020
#define DB_DUPSORT 0x00000002
#define DB_DURABLE_UNKNOWN 0x00000040
#define DB_ENCRYPT 0x00000001
#define DB_ENCRYPT_AES 0x00000001
#define DB_EXCL 0x00000040
#define DB_EXTENT 0x00000040
#define DB_FAILCHK 0x00000020
#define DB_EXCL 0x00000004
#define DB_EXTENT 0x00000100
#define DB_FAILCHK 0x00000010
#define DB_FAILCHK_ISALIVE 0x00000040
#define DB_FAST_STAT 0x00000001
#define DB_FCNTL_LOCKING 0x00000800
#define DB_FLUSH 0x00000001
#define DB_FLUSH 0x00000002
#define DB_FORCE 0x00000001
#define DB_FORCESYNC 0x00000001
#define DB_FOREIGN_ABORT 0x00000001
@ -2851,26 +2897,28 @@ typedef struct entry {
#define DB_INIT_REP 0x00001000
#define DB_INIT_TXN 0x00002000
#define DB_INORDER 0x00000020
#define DB_INTERNAL_DB 0x00001000
#define DB_INTERNAL_PERSISTENT_DB 0x00001000
#define DB_INTERNAL_TEMPORARY_DB 0x00002000
#define DB_JOIN_NOSORT 0x00000001
#define DB_LEGACY 0x00000004
#define DB_LOCAL_SITE 0x00000008
#define DB_LOCKDOWN 0x00004000
#define DB_LOCK_CHECK 0x00000001
#define DB_LOCK_NOWAIT 0x00000002
#define DB_LOCK_RECORD 0x00000004
#define DB_LOCK_SET_TIMEOUT 0x00000008
#define DB_LOCK_SWITCH 0x00000010
#define DB_LOCK_UPGRADE 0x00000020
#define DB_LOCK_IGNORE_REC 0x00000002
#define DB_LOCK_NOWAIT 0x00000004
#define DB_LOCK_RECORD 0x00000008
#define DB_LOCK_SET_TIMEOUT 0x00000010
#define DB_LOCK_SWITCH 0x00000020
#define DB_LOCK_UPGRADE 0x00000040
#define DB_LOG_AUTO_REMOVE 0x00000001
#define DB_LOG_CHKPNT 0x00000002
#define DB_LOG_CHKPNT 0x00000001
#define DB_LOG_COMMIT 0x00000004
#define DB_LOG_DIRECT 0x00000002
#define DB_LOG_DSYNC 0x00000004
#define DB_LOG_IN_MEMORY 0x00000008
#define DB_LOG_NOCOPY 0x00000008
#define DB_LOG_NOT_DURABLE 0x00000010
#define DB_LOG_NO_DATA 0x00000004
#define DB_LOG_NO_DATA 0x00000002
#define DB_LOG_VERIFY_CAF 0x00000001
#define DB_LOG_VERIFY_DBFILE 0x00000002
#define DB_LOG_VERIFY_ERR 0x00000004
@ -2889,26 +2937,26 @@ typedef struct entry {
#define DB_MPOOL_LAST 0x00000010
#define DB_MPOOL_NEW 0x00000020
#define DB_MPOOL_NOFILE 0x00000001
#define DB_MPOOL_NOLOCK 0x00000002
#define DB_MPOOL_NOLOCK 0x00000004
#define DB_MPOOL_TRY 0x00000040
#define DB_MPOOL_UNLINK 0x00000002
#define DB_MULTIPLE 0x00000800
#define DB_MULTIPLE_KEY 0x00004000
#define DB_MULTIVERSION 0x00000004
#define DB_MULTIVERSION 0x00000008
#define DB_MUTEX_ALLOCATED 0x00000001
#define DB_MUTEX_LOCKED 0x00000002
#define DB_MUTEX_LOGICAL_LOCK 0x00000004
#define DB_MUTEX_PROCESS_ONLY 0x00000008
#define DB_MUTEX_SELF_BLOCK 0x00000010
#define DB_MUTEX_SHARED 0x00000020
#define DB_NOERROR 0x00002000
#define DB_NOERROR 0x00004000
#define DB_NOFLUSH 0x00001000
#define DB_NOLOCKING 0x00002000
#define DB_NOMMAP 0x00000008
#define DB_NOMMAP 0x00000010
#define DB_NOORDERCHK 0x00000002
#define DB_NOPANIC 0x00004000
#define DB_NOSYNC 0x00000001
#define DB_NO_AUTO_COMMIT 0x00004000
#define DB_NO_AUTO_COMMIT 0x00008000
#define DB_NO_CHECKPOINT 0x00008000
#define DB_ODDFILESIZE 0x00000080
#define DB_ORDERCHKONLY 0x00000004
@ -2919,7 +2967,7 @@ typedef struct entry {
#define DB_PR_PAGE 0x00000010
#define DB_PR_RECOVERYTEST 0x00000020
#define DB_RDONLY 0x00000400
#define DB_RDWRMASTER 0x00008000
#define DB_RDWRMASTER 0x00010000
#define DB_READ_COMMITTED 0x00000400
#define DB_READ_UNCOMMITTED 0x00000200
#define DB_RECNUM 0x00000040
@ -2982,43 +3030,44 @@ typedef struct entry {
#define DB_ST_RELEN 0x00008000
#define DB_ST_TOPLEVEL 0x00010000
#define DB_SYSTEM_MEM 0x00080000
#define DB_THREAD 0x00000010
#define DB_THREAD 0x00000020
#define DB_TIME_NOTGRANTED 0x00040000
#define DB_TRUNCATE 0x00010000
#define DB_TXN_BULK 0x00000008
#define DB_TRUNCATE 0x00020000
#define DB_TXN_BULK 0x00000010
#define DB_TXN_FAMILY 0x00000040
#define DB_TXN_NOSYNC 0x00000001
#define DB_TXN_NOT_DURABLE 0x00000002
#define DB_TXN_NOT_DURABLE 0x00000004
#define DB_TXN_NOWAIT 0x00000002
#define DB_TXN_SNAPSHOT 0x00000010
#define DB_TXN_SYNC 0x00000004
#define DB_TXN_SNAPSHOT 0x00000004
#define DB_TXN_SYNC 0x00000008
#define DB_TXN_WAIT 0x00000080
#define DB_TXN_WRITE_NOSYNC 0x00000020
#define DB_UNREF 0x00020000
#define DB_UPGRADE 0x00000001
#define DB_USE_ENVIRON 0x00000004
#define DB_USE_ENVIRON_ROOT 0x00000008
#define DB_VERB_DEADLOCK 0x00000001
#define DB_VERB_FILEOPS 0x00000002
#define DB_VERB_FILEOPS_ALL 0x00000004
#define DB_VERB_RECOVERY 0x00000008
#define DB_VERB_REGISTER 0x00000010
#define DB_VERB_REPLICATION 0x00000020
#define DB_VERB_REPMGR_CONNFAIL 0x00000040
#define DB_VERB_REPMGR_MISC 0x00000080
#define DB_VERB_REP_ELECT 0x00000100
#define DB_VERB_REP_LEASE 0x00000200
#define DB_VERB_REP_MISC 0x00000400
#define DB_VERB_REP_MSGS 0x00000800
#define DB_VERB_REP_SYNC 0x00001000
#define DB_VERB_REP_SYSTEM 0x00002000
#define DB_VERB_REP_TEST 0x00004000
#define DB_VERB_WAITSFOR 0x00008000
#define DB_VERB_BACKUP 0x00000001
#define DB_VERB_DEADLOCK 0x00000002
#define DB_VERB_FILEOPS 0x00000004
#define DB_VERB_FILEOPS_ALL 0x00000008
#define DB_VERB_RECOVERY 0x00000010
#define DB_VERB_REGISTER 0x00000020
#define DB_VERB_REPLICATION 0x00000040
#define DB_VERB_REPMGR_CONNFAIL 0x00000080
#define DB_VERB_REPMGR_MISC 0x00000100
#define DB_VERB_REP_ELECT 0x00000200
#define DB_VERB_REP_LEASE 0x00000400
#define DB_VERB_REP_MISC 0x00000800
#define DB_VERB_REP_MSGS 0x00001000
#define DB_VERB_REP_SYNC 0x00002000
#define DB_VERB_REP_SYSTEM 0x00004000
#define DB_VERB_REP_TEST 0x00008000
#define DB_VERB_WAITSFOR 0x00010000
#define DB_VERIFY 0x00000002
#define DB_VERIFY_PARTITION 0x00040000
#define DB_WRITECURSOR 0x00000008
#define DB_WRITECURSOR 0x00000010
#define DB_WRITELOCK 0x00000020
#define DB_WRITEOPEN 0x00020000
#define DB_WRITEOPEN 0x00040000
#define DB_XA_CREATE 0x00000001
#define DB_YIELDCPU 0x00080000

View file

@ -1,280 +0,0 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="db" ProjectGUID="{CDE1C264-5E6C-11DF-AC8B-D58FDFD72085}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Static Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DIAGNOSTIC;;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb52sd.lib"/></Configuration>
<Configuration Name="Static Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb52s.lib"/></Configuration>
<Configuration Name="Static Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DIAGNOSTIC;;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb52sd.lib"/></Configuration>
<Configuration Name="Static Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb52s.lib"/></Configuration>
<Configuration Name="Static Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DIAGNOSTIC;;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb52sd.lib"/></Configuration>
<Configuration Name="Static Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db.pch" AssemblerListingLocation="$(OutDir)/db/" ObjectFile="$(OutDir)/db/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb52s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\src\btree\bt_compact.c"/>
<File RelativePath="..\src\btree\bt_compare.c"/>
<File RelativePath="..\src\btree\bt_conv.c"/>
<File RelativePath="..\src\btree\bt_curadj.c"/>
<File RelativePath="..\src\btree\bt_cursor.c"/>
<File RelativePath="..\src\btree\bt_delete.c"/>
<File RelativePath="..\src\btree\bt_method.c"/>
<File RelativePath="..\src\btree\bt_open.c"/>
<File RelativePath="..\src\btree\bt_put.c"/>
<File RelativePath="..\src\btree\bt_rec.c"/>
<File RelativePath="..\src\btree\bt_reclaim.c"/>
<File RelativePath="..\src\btree\bt_recno.c"/>
<File RelativePath="..\src\btree\bt_rsearch.c"/>
<File RelativePath="..\src\btree\bt_search.c"/>
<File RelativePath="..\src\btree\bt_split.c"/>
<File RelativePath="..\src\btree\bt_stat.c"/>
<File RelativePath="..\src\btree\btree_auto.c"/>
<File RelativePath="..\src\btree\bt_verify.c"/>
<File RelativePath="..\src\clib\bsearch.c"/>
<File RelativePath="..\src\clib\strdup.c"/>
<File RelativePath="..\src\clib\strerror.c"/>
<File RelativePath="..\src\clib\strsep.c"/>
<File RelativePath="..\src\clib\time.c"/>
<File RelativePath="..\src\common\clock.c"/>
<File RelativePath="..\src\common\db_byteorder.c"/>
<File RelativePath="..\src\common\db_compint.c"/>
<File RelativePath="..\src\common\db_err.c"/>
<File RelativePath="..\src\common\db_getlong.c"/>
<File RelativePath="..\src\common\db_idspace.c"/>
<File RelativePath="..\src\common\db_log2.c"/>
<File RelativePath="..\src\common\db_shash.c"/>
<File RelativePath="..\src\common\dbt.c"/>
<File RelativePath="..\src\common\mkpath.c"/>
<File RelativePath="..\src\common\util_cache.c"/>
<File RelativePath="..\src\common\util_log.c"/>
<File RelativePath="..\src\common\zerofill.c"/>
<File RelativePath="..\src\crypto\aes_method.c"/>
<File RelativePath="..\src\crypto\crypto.c"/>
<File RelativePath="..\src\crypto\mersenne\mt19937db.c"/>
<File RelativePath="..\src\crypto\rijndael\rijndael-alg-fst.c"/>
<File RelativePath="..\src\crypto\rijndael\rijndael-api-fst.c"/>
<File RelativePath="..\src\db\crdel_auto.c"/>
<File RelativePath="..\src\db\crdel_rec.c"/>
<File RelativePath="..\src\db\db.c"/>
<File RelativePath="..\src\db\db_am.c"/>
<File RelativePath="..\src\db\db_auto.c"/>
<File RelativePath="..\src\db\db_cam.c"/>
<File RelativePath="..\src\db\db_cds.c"/>
<File RelativePath="..\src\db\db_compact.c"/>
<File RelativePath="..\src\db\db_conv.c"/>
<File RelativePath="..\src\db\db_copy.c"/>
<File RelativePath="..\src\db\db_dispatch.c"/>
<File RelativePath="..\src\db\db_dup.c"/>
<File RelativePath="..\src\db\db_iface.c"/>
<File RelativePath="..\src\db\db_join.c"/>
<File RelativePath="..\src\db\db_meta.c"/>
<File RelativePath="..\src\db\db_method.c"/>
<File RelativePath="..\src\db\db_open.c"/>
<File RelativePath="..\src\db\db_overflow.c"/>
<File RelativePath="..\src\db\db_ovfl_vrfy.c"/>
<File RelativePath="..\src\db\db_pr.c"/>
<File RelativePath="..\src\db\db_rec.c"/>
<File RelativePath="..\src\db\db_reclaim.c"/>
<File RelativePath="..\src\db\db_remove.c"/>
<File RelativePath="..\src\db\db_rename.c"/>
<File RelativePath="..\src\db\db_ret.c"/>
<File RelativePath="..\src\db\db_setid.c"/>
<File RelativePath="..\src\db\db_setlsn.c"/>
<File RelativePath="..\src\db\db_sort_multiple.c"/>
<File RelativePath="..\src\db\db_stati.c"/>
<File RelativePath="..\src\db\db_truncate.c"/>
<File RelativePath="..\src\db\db_upg.c"/>
<File RelativePath="..\src\db\db_vrfy.c"/>
<File RelativePath="..\src\db\db_vrfyutil.c"/>
<File RelativePath="..\src\db\partition.c"/>
<File RelativePath="..\src\dbreg\dbreg.c"/>
<File RelativePath="..\src\dbreg\dbreg_auto.c"/>
<File RelativePath="..\src\dbreg\dbreg_rec.c"/>
<File RelativePath="..\src\dbreg\dbreg_stat.c"/>
<File RelativePath="..\src\dbreg\dbreg_util.c"/>
<File RelativePath="..\src\env\env_alloc.c"/>
<File RelativePath="..\src\env\env_config.c"/>
<File RelativePath="..\src\env\env_failchk.c"/>
<File RelativePath="..\src\env\env_file.c"/>
<File RelativePath="..\src\env\env_globals.c"/>
<File RelativePath="..\src\env\env_method.c"/>
<File RelativePath="..\src\env\env_name.c"/>
<File RelativePath="..\src\env\env_open.c"/>
<File RelativePath="..\src\env\env_recover.c"/>
<File RelativePath="..\src\env\env_region.c"/>
<File RelativePath="..\src\env\env_register.c"/>
<File RelativePath="..\src\env\env_sig.c"/>
<File RelativePath="..\src\env\env_stat.c"/>
<File RelativePath="..\src\fileops\fileops_auto.c"/>
<File RelativePath="..\src\fileops\fop_basic.c"/>
<File RelativePath="..\src\fileops\fop_rec.c"/>
<File RelativePath="..\src\fileops\fop_util.c"/>
<File RelativePath="..\src\hash\hash.c"/>
<File RelativePath="..\src\hash\hash_auto.c"/>
<File RelativePath="..\src\hash\hash_compact.c"/>
<File RelativePath="..\src\hash\hash_conv.c"/>
<File RelativePath="..\src\hash\hash_dup.c"/>
<File RelativePath="..\src\hash\hash_func.c"/>
<File RelativePath="..\src\hash\hash_meta.c"/>
<File RelativePath="..\src\hash\hash_method.c"/>
<File RelativePath="..\src\hash\hash_open.c"/>
<File RelativePath="..\src\hash\hash_page.c"/>
<File RelativePath="..\src\hash\hash_rec.c"/>
<File RelativePath="..\src\hash\hash_reclaim.c"/>
<File RelativePath="..\src\hash\hash_stat.c"/>
<File RelativePath="..\src\hash\hash_verify.c"/>
<File RelativePath="..\src\heap\heap.c"/>
<File RelativePath="..\src\heap\heap_auto.c"/>
<File RelativePath="..\src\heap\heap_conv.c"/>
<File RelativePath="..\src\heap\heap_method.c"/>
<File RelativePath="..\src\heap\heap_open.c"/>
<File RelativePath="..\src\heap\heap_rec.c"/>
<File RelativePath="..\src\heap\heap_reclaim.c"/>
<File RelativePath="..\src\heap\heap_stat.c"/>
<File RelativePath="..\src\heap\heap_verify.c"/>
<File RelativePath="..\src\hmac\hmac.c"/>
<File RelativePath="..\src\hmac\sha1.c"/>
<File RelativePath="..\src\lock\lock.c"/>
<File RelativePath="..\src\lock\lock_deadlock.c"/>
<File RelativePath="..\src\lock\lock_failchk.c"/>
<File RelativePath="..\src\lock\lock_id.c"/>
<File RelativePath="..\src\lock\lock_list.c"/>
<File RelativePath="..\src\lock\lock_method.c"/>
<File RelativePath="..\src\lock\lock_region.c"/>
<File RelativePath="..\src\lock\lock_stat.c"/>
<File RelativePath="..\src\lock\lock_timer.c"/>
<File RelativePath="..\src\lock\lock_util.c"/>
<File RelativePath="..\src\log\log.c"/>
<File RelativePath="..\src\log\log_archive.c"/>
<File RelativePath="..\src\log\log_compare.c"/>
<File RelativePath="..\src\log\log_debug.c"/>
<File RelativePath="..\src\log\log_get.c"/>
<File RelativePath="..\src\log\log_method.c"/>
<File RelativePath="..\src\log\log_put.c"/>
<File RelativePath="..\src\log\log_stat.c"/>
<File RelativePath="..\src\log\log_verify.c"/>
<File RelativePath="..\src\log\log_verify_auto.c"/>
<File RelativePath="..\src\log\log_verify_int.c"/>
<File RelativePath="..\src\log\log_verify_util.c"/>
<File RelativePath="..\src\mp\mp_alloc.c"/>
<File RelativePath="..\src\mp\mp_bh.c"/>
<File RelativePath="..\src\mp\mp_fget.c"/>
<File RelativePath="..\src\mp\mp_fmethod.c"/>
<File RelativePath="..\src\mp\mp_fopen.c"/>
<File RelativePath="..\src\mp\mp_fput.c"/>
<File RelativePath="..\src\mp\mp_fset.c"/>
<File RelativePath="..\src\mp\mp_method.c"/>
<File RelativePath="..\src\mp\mp_mvcc.c"/>
<File RelativePath="..\src\mp\mp_region.c"/>
<File RelativePath="..\src\mp\mp_register.c"/>
<File RelativePath="..\src\mp\mp_resize.c"/>
<File RelativePath="..\src\mp\mp_stat.c"/>
<File RelativePath="..\src\mp\mp_sync.c"/>
<File RelativePath="..\src\mp\mp_trickle.c"/>
<File RelativePath="..\src\mutex\mut_alloc.c"/>
<File RelativePath="..\src\mutex\mut_failchk.c"/>
<File RelativePath="..\src\mutex\mut_method.c"/>
<File RelativePath="..\src\mutex\mut_region.c"/>
<File RelativePath="..\src\mutex\mut_stat.c"/>
<File RelativePath="..\src\mutex\mut_win32.c"/>
<File RelativePath="..\src\os\os_abort.c"/>
<File RelativePath="..\src\os\os_alloc.c"/>
<File RelativePath="..\src\os\os_pid.c"/>
<File RelativePath="..\src\os\os_root.c"/>
<File RelativePath="..\src\os\os_rpath.c"/>
<File RelativePath="..\src\os\os_stack.c"/>
<File RelativePath="..\src\os\os_tmpdir.c"/>
<File RelativePath="..\src\os\os_uid.c"/>
<File RelativePath="..\src\os_windows\ce_ctime.c"/>
<File RelativePath="..\src\os_windows\os_abs.c"/>
<File RelativePath="..\src\os_windows\os_clock.c"/>
<File RelativePath="..\src\os_windows\os_config.c"/>
<File RelativePath="..\src\os_windows\os_cpu.c"/>
<File RelativePath="..\src\os_windows\os_dir.c"/>
<File RelativePath="..\src\os_windows\os_errno.c"/>
<File RelativePath="..\src\os_windows\os_fid.c"/>
<File RelativePath="..\src\os_windows\os_flock.c"/>
<File RelativePath="..\src\os_windows\os_fsync.c"/>
<File RelativePath="..\src\os_windows\os_getenv.c"/>
<File RelativePath="..\src\os_windows\os_handle.c"/>
<File RelativePath="..\src\os_windows\os_map.c"/>
<File RelativePath="..\src\os_windows\os_mkdir.c"/>
<File RelativePath="..\src\os_windows\os_open.c"/>
<File RelativePath="..\src\os_windows\os_rename.c"/>
<File RelativePath="..\src\os_windows\os_rw.c"/>
<File RelativePath="..\src\os_windows\os_seek.c"/>
<File RelativePath="..\src\os_windows\os_stat.c"/>
<File RelativePath="..\src\os_windows\os_truncate.c"/>
<File RelativePath="..\src\os_windows\os_unlink.c"/>
<File RelativePath="..\src\os_windows\os_yield.c"/>
<File RelativePath="..\src\qam\qam.c"/>
<File RelativePath="..\src\qam\qam_auto.c"/>
<File RelativePath="..\src\qam\qam_conv.c"/>
<File RelativePath="..\src\qam\qam_files.c"/>
<File RelativePath="..\src\qam\qam_method.c"/>
<File RelativePath="..\src\qam\qam_open.c"/>
<File RelativePath="..\src\qam\qam_rec.c"/>
<File RelativePath="..\src\qam\qam_stat.c"/>
<File RelativePath="..\src\qam\qam_upgrade.c"/>
<File RelativePath="..\src\qam\qam_verify.c"/>
<File RelativePath="..\src\rep\rep_stub.c"/>
<File RelativePath="..\src\repmgr\repmgr_stub.c"/>
<File RelativePath="..\src\sequence\seq_stat.c"/>
<File RelativePath="..\src\sequence\sequence.c"/>
<File RelativePath="..\src\txn\txn.c"/>
<File RelativePath="..\src\txn\txn_auto.c"/>
<File RelativePath="..\src\txn\txn_chkpt.c"/>
<File RelativePath="..\src\txn\txn_failchk.c"/>
<File RelativePath="..\src\txn\txn_method.c"/>
<File RelativePath="..\src\txn\txn_rec.c"/>
<File RelativePath="..\src\txn\txn_recover.c"/>
<File RelativePath="..\src\txn\txn_region.c"/>
<File RelativePath="..\src\txn\txn_stat.c"/>
<File RelativePath="..\src\txn\txn_util.c"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -39,6 +39,9 @@
/* Define to 1 if you have the `atol' function. */
#define HAVE_ATOL 1
/* Define to 1 if platform reads and writes files atomically. */
/* #undef HAVE_ATOMICFILEREAD */
/* Define to 1 to use Solaris library routes for atomic operations. */
/* #undef HAVE_ATOMIC_SOLARIS */
@ -576,16 +579,16 @@
#define PACKAGE_NAME "Berkeley DB"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "Berkeley DB 5.2.36"
#define PACKAGE_STRING "Berkeley DB 5.3.21"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "db-5.2.36"
#define PACKAGE_TARNAME "db-5.3.21"
/* Define to the home page for this package. */
#define PACKAGE_URL "http://www.oracle.com/technology/software/products/berkeley-db/index.html"
/* Define to the version of this package. */
#define PACKAGE_VERSION "5.2.36"
#define PACKAGE_VERSION "5.3.21"
/* The size of a `char', as computed by sizeof. */
/* #undef SIZEOF_CHAR */

View file

@ -2,7 +2,7 @@
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1996, 2011 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
@ -263,6 +263,9 @@ typedef struct __fn {
#define F_CLR(p, f) (p)->flags &= ~(f)
#define F_ISSET(p, f) ((p)->flags & (f))
#define F_SET(p, f) (p)->flags |= (f)
#define F2_CLR(p, f) ((p)->flags2 &= ~(f))
#define F2_ISSET(p, f) ((p)->flags2 & (f))
#define F2_SET(p, f) ((p)->flags2 |= (f))
#define LF_CLR(f) ((flags) &= ~(f))
#define LF_ISSET(f) ((flags) & (f))
#define LF_SET(f) ((flags) |= (f))
@ -336,6 +339,12 @@ typedef struct __fn {
#define STAT_SET_VERB(env, cat, subcat, val, newval, id1, id2) NOP_STATEMENT
#endif
#if defined HAVE_SIMPLE_THREAD_TYPE
#define DB_THREADID_INIT(t) COMPQUIET((t), 0)
#else
#define DB_THREADID_INIT(t) memset(&(t), 0, sizeof(t))
#endif
/*
* These macros are used when an error condition is first noticed. They allow
* one to be notified (via e.g. DTrace, SystemTap, ...) when an error occurs
@ -536,8 +545,9 @@ typedef enum {
DB_APP_NONE=0, /* No type (region). */
DB_APP_DATA, /* Data file. */
DB_APP_LOG, /* Log file. */
DB_APP_TMP, /* Temporary file. */
DB_APP_RECOVER /* We are in recovery. */
DB_APP_META, /* Persistent metadata file. */
DB_APP_RECOVER, /* We are in recovery. */
DB_APP_TMP /* Temporary file. */
} APPNAME;
/*
@ -738,6 +748,18 @@ typedef struct __flag_map {
u_int32_t inflag, outflag;
} FLAG_MAP;
typedef struct __db_backup_handle {
int (*open) __P((DB_ENV *, const char *, const char *, void **));
int (*write) __P((DB_ENV *,
u_int32_t, u_int32_t, u_int32_t, u_int8_t *, void *));
int (*close) __P((DB_ENV *, const char *, void *));
u_int32_t size;
u_int32_t read_count;
u_int32_t read_sleep;
#define BACKUP_WRITE_DIRECT 0x0001
int flags;
} DB_BACKUP;
/*
* Internal database environment structure.
*
@ -812,6 +834,8 @@ struct __env {
DB_REP *rep_handle; /* Replication handle */
DB_TXNMGR *tx_handle; /* Txn handle */
DB_BACKUP *backup_handle; /* database copy configuration. */
/*
* XA support.
*/

View file

@ -1,241 +0,0 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="db_small" ProjectGUID="{XXX-NOT-USED-XXX}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Static Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;DIAGNOSTIC;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small52sd.lib"/></Configuration>
<Configuration Name="Static Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small52s.lib"/></Configuration>
<Configuration Name="Static Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;DIAGNOSTIC;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small52sd.lib"/></Configuration>
<Configuration Name="Static Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small52s.lib"/></Configuration>
<Configuration Name="Static Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;DIAGNOSTIC;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small52sd.lib"/></Configuration>
<Configuration Name="Static Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_small" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;HAVE_SMALLBUILD;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_small.pch" AssemblerListingLocation="$(OutDir)/db_small/" ObjectFile="$(OutDir)/db_small/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_small52s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\src\btree\bt_compact.c"/>
<File RelativePath="..\src\btree\bt_compare.c"/>
<File RelativePath="..\src\btree\bt_conv.c"/>
<File RelativePath="..\src\btree\bt_curadj.c"/>
<File RelativePath="..\src\btree\bt_cursor.c"/>
<File RelativePath="..\src\btree\bt_delete.c"/>
<File RelativePath="..\src\btree\bt_method.c"/>
<File RelativePath="..\src\btree\bt_open.c"/>
<File RelativePath="..\src\btree\bt_put.c"/>
<File RelativePath="..\src\btree\bt_rec.c"/>
<File RelativePath="..\src\btree\bt_reclaim.c"/>
<File RelativePath="..\src\btree\bt_recno.c"/>
<File RelativePath="..\src\btree\bt_rsearch.c"/>
<File RelativePath="..\src\btree\bt_search.c"/>
<File RelativePath="..\src\btree\bt_split.c"/>
<File RelativePath="..\src\btree\bt_stat.c"/>
<File RelativePath="..\src\btree\btree_auto.c"/>
<File RelativePath="..\src\clib\bsearch.c"/>
<File RelativePath="..\src\clib\strdup.c"/>
<File RelativePath="..\src\clib\strerror.c"/>
<File RelativePath="..\src\clib\strsep.c"/>
<File RelativePath="..\src\clib\time.c"/>
<File RelativePath="..\src\common\clock.c"/>
<File RelativePath="..\src\common\crypto_stub.c"/>
<File RelativePath="..\src\common\db_byteorder.c"/>
<File RelativePath="..\src\common\db_compint.c"/>
<File RelativePath="..\src\common\db_err.c"/>
<File RelativePath="..\src\common\db_getlong.c"/>
<File RelativePath="..\src\common\db_idspace.c"/>
<File RelativePath="..\src\common\db_log2.c"/>
<File RelativePath="..\src\common\db_shash.c"/>
<File RelativePath="..\src\common\dbt.c"/>
<File RelativePath="..\src\common\mkpath.c"/>
<File RelativePath="..\src\common\util_cache.c"/>
<File RelativePath="..\src\common\util_log.c"/>
<File RelativePath="..\src\common\zerofill.c"/>
<File RelativePath="..\src\db\crdel_auto.c"/>
<File RelativePath="..\src\db\crdel_rec.c"/>
<File RelativePath="..\src\db\db.c"/>
<File RelativePath="..\src\db\db_am.c"/>
<File RelativePath="..\src\db\db_auto.c"/>
<File RelativePath="..\src\db\db_cam.c"/>
<File RelativePath="..\src\db\db_cds.c"/>
<File RelativePath="..\src\db\db_compact.c"/>
<File RelativePath="..\src\db\db_conv.c"/>
<File RelativePath="..\src\db\db_copy.c"/>
<File RelativePath="..\src\db\db_dispatch.c"/>
<File RelativePath="..\src\db\db_dup.c"/>
<File RelativePath="..\src\db\db_iface.c"/>
<File RelativePath="..\src\db\db_join.c"/>
<File RelativePath="..\src\db\db_meta.c"/>
<File RelativePath="..\src\db\db_method.c"/>
<File RelativePath="..\src\db\db_open.c"/>
<File RelativePath="..\src\db\db_overflow.c"/>
<File RelativePath="..\src\db\db_pr.c"/>
<File RelativePath="..\src\db\db_rec.c"/>
<File RelativePath="..\src\db\db_reclaim.c"/>
<File RelativePath="..\src\db\db_remove.c"/>
<File RelativePath="..\src\db\db_rename.c"/>
<File RelativePath="..\src\db\db_ret.c"/>
<File RelativePath="..\src\db\db_setid.c"/>
<File RelativePath="..\src\db\db_setlsn.c"/>
<File RelativePath="..\src\db\db_sort_multiple.c"/>
<File RelativePath="..\src\db\db_stati.c"/>
<File RelativePath="..\src\db\db_truncate.c"/>
<File RelativePath="..\src\db\db_upg.c"/>
<File RelativePath="..\src\db\db_vrfy_stub.c"/>
<File RelativePath="..\src\db\partition.c"/>
<File RelativePath="..\src\dbreg\dbreg.c"/>
<File RelativePath="..\src\dbreg\dbreg_auto.c"/>
<File RelativePath="..\src\dbreg\dbreg_rec.c"/>
<File RelativePath="..\src\dbreg\dbreg_stat.c"/>
<File RelativePath="..\src\dbreg\dbreg_util.c"/>
<File RelativePath="..\src\env\env_alloc.c"/>
<File RelativePath="..\src\env\env_config.c"/>
<File RelativePath="..\src\env\env_failchk.c"/>
<File RelativePath="..\src\env\env_file.c"/>
<File RelativePath="..\src\env\env_globals.c"/>
<File RelativePath="..\src\env\env_method.c"/>
<File RelativePath="..\src\env\env_name.c"/>
<File RelativePath="..\src\env\env_open.c"/>
<File RelativePath="..\src\env\env_recover.c"/>
<File RelativePath="..\src\env\env_region.c"/>
<File RelativePath="..\src\env\env_register.c"/>
<File RelativePath="..\src\env\env_sig.c"/>
<File RelativePath="..\src\env\env_stat.c"/>
<File RelativePath="..\src\fileops\fileops_auto.c"/>
<File RelativePath="..\src\fileops\fop_basic.c"/>
<File RelativePath="..\src\fileops\fop_rec.c"/>
<File RelativePath="..\src\fileops\fop_util.c"/>
<File RelativePath="..\src\hash\hash_func.c"/>
<File RelativePath="..\src\hash\hash_stub.c"/>
<File RelativePath="..\src\heap\heap_stub.c"/>
<File RelativePath="..\src\hmac\hmac.c"/>
<File RelativePath="..\src\hmac\sha1.c"/>
<File RelativePath="..\src\lock\lock.c"/>
<File RelativePath="..\src\lock\lock_deadlock.c"/>
<File RelativePath="..\src\lock\lock_failchk.c"/>
<File RelativePath="..\src\lock\lock_id.c"/>
<File RelativePath="..\src\lock\lock_list.c"/>
<File RelativePath="..\src\lock\lock_method.c"/>
<File RelativePath="..\src\lock\lock_region.c"/>
<File RelativePath="..\src\lock\lock_stat.c"/>
<File RelativePath="..\src\lock\lock_timer.c"/>
<File RelativePath="..\src\lock\lock_util.c"/>
<File RelativePath="..\src\log\log.c"/>
<File RelativePath="..\src\log\log_archive.c"/>
<File RelativePath="..\src\log\log_compare.c"/>
<File RelativePath="..\src\log\log_debug.c"/>
<File RelativePath="..\src\log\log_get.c"/>
<File RelativePath="..\src\log\log_method.c"/>
<File RelativePath="..\src\log\log_put.c"/>
<File RelativePath="..\src\log\log_stat.c"/>
<File RelativePath="..\src\log\log_verify_stub.c"/>
<File RelativePath="..\src\mp\mp_alloc.c"/>
<File RelativePath="..\src\mp\mp_bh.c"/>
<File RelativePath="..\src\mp\mp_fget.c"/>
<File RelativePath="..\src\mp\mp_fmethod.c"/>
<File RelativePath="..\src\mp\mp_fopen.c"/>
<File RelativePath="..\src\mp\mp_fput.c"/>
<File RelativePath="..\src\mp\mp_fset.c"/>
<File RelativePath="..\src\mp\mp_method.c"/>
<File RelativePath="..\src\mp\mp_mvcc.c"/>
<File RelativePath="..\src\mp\mp_region.c"/>
<File RelativePath="..\src\mp\mp_register.c"/>
<File RelativePath="..\src\mp\mp_resize.c"/>
<File RelativePath="..\src\mp\mp_stat.c"/>
<File RelativePath="..\src\mp\mp_sync.c"/>
<File RelativePath="..\src\mp\mp_trickle.c"/>
<File RelativePath="..\src\mutex\mut_alloc.c"/>
<File RelativePath="..\src\mutex\mut_failchk.c"/>
<File RelativePath="..\src\mutex\mut_method.c"/>
<File RelativePath="..\src\mutex\mut_region.c"/>
<File RelativePath="..\src\mutex\mut_stat.c"/>
<File RelativePath="..\src\mutex\mut_win32.c"/>
<File RelativePath="..\src\os\os_abort.c"/>
<File RelativePath="..\src\os\os_alloc.c"/>
<File RelativePath="..\src\os\os_ctime.c"/>
<File RelativePath="..\src\os\os_pid.c"/>
<File RelativePath="..\src\os\os_root.c"/>
<File RelativePath="..\src\os\os_rpath.c"/>
<File RelativePath="..\src\os\os_stack.c"/>
<File RelativePath="..\src\os\os_tmpdir.c"/>
<File RelativePath="..\src\os\os_uid.c"/>
<File RelativePath="..\src\os_windows\os_abs.c"/>
<File RelativePath="..\src\os_windows\os_clock.c"/>
<File RelativePath="..\src\os_windows\os_config.c"/>
<File RelativePath="..\src\os_windows\os_cpu.c"/>
<File RelativePath="..\src\os_windows\os_dir.c"/>
<File RelativePath="..\src\os_windows\os_errno.c"/>
<File RelativePath="..\src\os_windows\os_fid.c"/>
<File RelativePath="..\src\os_windows\os_flock.c"/>
<File RelativePath="..\src\os_windows\os_fsync.c"/>
<File RelativePath="..\src\os_windows\os_getenv.c"/>
<File RelativePath="..\src\os_windows\os_handle.c"/>
<File RelativePath="..\src\os_windows\os_map.c"/>
<File RelativePath="..\src\os_windows\os_mkdir.c"/>
<File RelativePath="..\src\os_windows\os_open.c"/>
<File RelativePath="..\src\os_windows\os_rename.c"/>
<File RelativePath="..\src\os_windows\os_rw.c"/>
<File RelativePath="..\src\os_windows\os_seek.c"/>
<File RelativePath="..\src\os_windows\os_stat.c"/>
<File RelativePath="..\src\os_windows\os_truncate.c"/>
<File RelativePath="..\src\os_windows\os_unlink.c"/>
<File RelativePath="..\src\os_windows\os_yield.c"/>
<File RelativePath="..\src\qam\qam_stub.c"/>
<File RelativePath="..\src\rep\rep_stub.c"/>
<File RelativePath="..\src\repmgr\repmgr_stub.c"/>
<File RelativePath="..\src\sequence\seq_stat.c"/>
<File RelativePath="..\src\sequence\sequence.c"/>
<File RelativePath="..\src\txn\txn.c"/>
<File RelativePath="..\src\txn\txn_auto.c"/>
<File RelativePath="..\src\txn\txn_chkpt.c"/>
<File RelativePath="..\src\txn\txn_failchk.c"/>
<File RelativePath="..\src\txn\txn_method.c"/>
<File RelativePath="..\src\txn\txn_rec.c"/>
<File RelativePath="..\src\txn\txn_recover.c"/>
<File RelativePath="..\src\txn\txn_region.c"/>
<File RelativePath="..\src\txn\txn_stat.c"/>
<File RelativePath="..\src\txn\txn_util.c"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -1,203 +0,0 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="db_sql" ProjectGUID="{ACE41B30-04BB-11DF-8A39-0800200C9A66}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_API=__declspec(dllexport);SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_USRDLL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/libdb_sql52d.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql52d.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql52d.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_API=__declspec(dllexport);_USRDLL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/libdb_sql52.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql52.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql52.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Static Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql52sd.lib"/></Configuration>
<Configuration Name="Static Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql52s.lib"/></Configuration>
<Configuration Name="Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_API=__declspec(dllexport);SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_USRDLL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/libdb_sql52d.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql52d.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql52d.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_API=__declspec(dllexport);_USRDLL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/libdb_sql52.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql52.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql52.lib" TargetMachine="3"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Static Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql52sd.lib"/></Configuration>
<Configuration Name="Static Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql52s.lib"/></Configuration>
<Configuration Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_API=__declspec(dllexport);SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_USRDLL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/libdb_sql52d.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql52d.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql52d.lib" TargetMachine="0"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="2" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_API=__declspec(dllexport);_USRDLL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/libdb_sql52.dll" ProgramDatabaseFile="$(OutDir)/libdb_sql52.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" ImportLibrary="$(OutDir)/libdb_sql52.lib" TargetMachine="0"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Static Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Debug" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;SQLITE_TEST;SQLITE_DEBUG;SQLITE_MEMDEBUG;_LIB;" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql52sd.lib"/></Configuration>
<Configuration Name="Static Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Static_Release" IntermediateDirectory="./$(OutDir)/db_sql" ConfigurationType="4" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated,../lang/sql/adapter,../lang/sql/sqlite/src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;SQLITE_EXPORTS;SQLITE_CORE;SQLITE_THREADSAFE=1;BDBSQL_OMIT_SHARING;SQLITE_OMIT_WAL;SQLITE_HAS_CODEC;_LIB;" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/db_sql.pch" AssemblerListingLocation="$(OutDir)/db_sql/" ObjectFile="$(OutDir)/db_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLibrarianTool" OutputFile="$(OutDir)/libdb_sql52s.lib"/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\lang\sql\sqlite\src\alter.c"/>
<File RelativePath="..\lang\sql\sqlite\src\analyze.c"/>
<File RelativePath="..\lang\sql\sqlite\src\attach.c"/>
<File RelativePath="..\lang\sql\sqlite\src\auth.c"/>
<File RelativePath="..\lang\sql\adapter\backup.c"/>
<File RelativePath="..\lang\sql\sqlite\src\bitvec.c"/>
<File RelativePath="..\lang\sql\adapter\btmutex.c"/>
<File RelativePath="..\lang\sql\adapter\btree.c"/>
<File RelativePath="..\lang\sql\sqlite\src\build.c"/>
<File RelativePath="..\lang\sql\sqlite\src\callback.c"/>
<File RelativePath="..\lang\sql\sqlite\src\complete.c"/>
<File RelativePath="..\lang\sql\sqlite\src\ctime.c"/>
<File RelativePath="..\lang\sql\sqlite\src\date.c"/>
<File RelativePath="..\lang\sql\adapter\db_encrypt.c"/>
<File RelativePath="..\lang\sql\adapter\db_pragma.c"/>
<File RelativePath="..\lang\sql\adapter\db_shell.c"/>
<File RelativePath="..\lang\sql\adapter\db_sequence.c"/>
<File RelativePath="..\lang\sql\sqlite\src\delete.c"/>
<File RelativePath="..\lang\sql\sqlite\src\expr.c"/>
<File RelativePath="..\lang\sql\sqlite\src\fault.c"/>
<File RelativePath="..\lang\sql\sqlite\src\fkey.c"/>
<File RelativePath="..\lang\sql\sqlite\src\func.c"/>
<File RelativePath="..\lang\sql\sqlite\src\global.c"/>
<File RelativePath="..\lang\sql\sqlite\src\hash.c"/>
<File RelativePath="..\lang\sql\sqlite\src\insert.c"/>
<File RelativePath="..\lang\sql\sqlite\src\journal.c"/>
<File RelativePath="..\lang\sql\sqlite\src\legacy.c"/>
<File RelativePath="..\lang\sql\sqlite\src\loadext.c"/>
<File RelativePath="..\lang\sql\sqlite\src\main.c"/>
<File RelativePath="..\lang\sql\sqlite\src\malloc.c"/>
<File RelativePath="..\lang\sql\sqlite\src\mem0.c"/>
<File RelativePath="..\lang\sql\sqlite\src\mem1.c"/>
<File RelativePath="..\lang\sql\sqlite\src\mem2.c"/>
<File RelativePath="..\lang\sql\sqlite\src\memjournal.c"/>
<File RelativePath="..\lang\sql\sqlite\src\mutex.c"/>
<File RelativePath="..\lang\sql\sqlite\src\mutex_noop.c"/>
<File RelativePath="..\lang\sql\sqlite\src\mutex_w32.c"/>
<File RelativePath="..\lang\sql\sqlite\src\notify.c"/>
<File RelativePath="..\lang\sql\generated\opcodes.c"/>
<File RelativePath="..\lang\sql\sqlite\src\os.c"/>
<File RelativePath="..\lang\sql\sqlite\src\os_win.c"/>
<File RelativePath="..\lang\sql\adapter\pager.c"/>
<File RelativePath="..\lang\sql\generated\parse.c"/>
<File RelativePath="..\lang\sql\adapter\pcache.c"/>
<File RelativePath="..\lang\sql\adapter\pcache1.c"/>
<File RelativePath="..\lang\sql\sqlite\src\pragma.c"/>
<File RelativePath="..\lang\sql\sqlite\src\prepare.c"/>
<File RelativePath="..\lang\sql\sqlite\src\printf.c"/>
<File RelativePath="..\lang\sql\sqlite\src\random.c"/>
<File RelativePath="..\lang\sql\sqlite\src\resolve.c"/>
<File RelativePath="..\lang\sql\sqlite\src\rowset.c"/>
<File RelativePath="..\lang\sql\sqlite\src\select.c"/>
<File RelativePath="..\lang\sql\sqlite\src\status.c"/>
<File RelativePath="..\lang\sql\sqlite\src\table.c"/>
<File RelativePath="..\lang\sql\sqlite\src\tokenize.c"/>
<File RelativePath="..\lang\sql\sqlite\src\trigger.c"/>
<File RelativePath="..\lang\sql\sqlite\src\update.c"/>
<File RelativePath="..\lang\sql\sqlite\src\utf.c"/>
<File RelativePath="..\lang\sql\sqlite\src\util.c"/>
<File RelativePath="..\lang\sql\adapter\vacuum.c"/>
<File RelativePath="..\lang\sql\sqlite\src\vdbe.c"/>
<File RelativePath="..\lang\sql\sqlite\src\vdbeapi.c"/>
<File RelativePath="..\lang\sql\sqlite\src\vdbeaux.c"/>
<File RelativePath="..\lang\sql\sqlite\src\vdbeblob.c"/>
<File RelativePath="..\lang\sql\sqlite\src\vdbemem.c"/>
<File RelativePath="..\lang\sql\sqlite\src\vdbetrace.c"/>
<File RelativePath="..\lang\sql\sqlite\src\vtab.c"/>
<File RelativePath="..\lang\sql\adapter\wal.c"/>
<File RelativePath="..\lang\sql\sqlite\src\walker.c"/>
<File RelativePath="..\lang\sql\sqlite\src\where.c"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -1,94 +0,0 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="wce_sql" ProjectGUID="{75DF98AA-25DF-4183-A022-024CF918480D}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_sql" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src,../lang/sql/generated" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_sql.pch" AssemblerListingLocation="$(OutDir)/wce_sql/" ObjectFile="$(OutDir)/wce_sql/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_sql.exe" ProgramDatabaseFile="$(OutDir)/wce_sql.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\examples\sql\wce_sql\excxx_wce_sql.cpp"/>
<File RelativePath="..\examples\sql\wce_sql\excxx_wce_sqlDlg.cpp"/>
<File RelativePath="..\examples\sql\wce_sql\stdafx.cpp"/>
<File RelativePath="..\examples\sql\wce_sql\excxx_wce_sql.h"/>
<File RelativePath="..\examples\sql\wce_sql\excxx_wce_sqlDlg.h"/>
<File RelativePath="..\examples\sql\wce_sql\Resourceppc.h"/>
<File RelativePath="..\examples\sql\wce_sql\stdafx.h"/>
<File RelativePath="..\examples\sql\wce_sql\excxx_wce_sql.ico"/>
<File RelativePath="..\examples\sql\wce_sql\excxx_wce_sqlppc.rc"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -1,88 +0,0 @@
<VisualStudioProject ProjectType="Visual C++" Version="8.00" Name="wce_tpcb" ProjectGUID="{F2CE670A-ABAE-414A-9A17-8079AB58613F}">
<Platforms>
<Platform Name="Pocket PC 2003 (ARMV4)"/>
<Platform Name="Smartphone 2003 (ARMV4)"/>
<Platform Name="Windows Mobile 6.5.3 Professional DTK (ARMV4I)"/>
</Platforms>
<Configurations>
<Configuration Name="Debug|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Pocket PC 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Smartphone 2003 (ARMV4)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="3" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Debug|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Debug" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="0" MinimalRebuild="TRUE" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;DEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="1" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" BasicRuntimeChecks="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
<Configuration Name="Release|Windows Mobile 6.5.3 Professional DTK (ARMV4I)" OutputDirectory="..\build_wince\$(PlatformName)\Release" IntermediateDirectory="./$(OutDir)/wce_tpcb" ConfigurationType="1" UseOfMFC="0" ATLMinimizesCRunTimeLibraryUsage="FALSE" CharacterSet="1">
<Tool Name="VCPreLinkEventTool"/>
<Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_WIN32_WCE=$(CEVER);$(CePlatform);ARM,_ARM_,ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;"/>
<Tool Name="VCXMLDataGeneratorTool"/>
<Tool Name="VCManagedWrapperGeneratorTool"/>
<Tool Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
<Tool Name="VCCLCompilerTool" BufferSecurityCheck="FALSE" Optimization="2" MinimalRebuild="TRUE" InlineFunctionExpansion="1" AdditionalIncludeDirectories="../build_wince,../src" PreprocessorDefinitions="DB_WIN32;DB_WINCE;_WIN32_WCE=$(CEVER);$(CePlatform);ARM;_ARM_;ARMV4;UNDER_CE=$(CEVER);UNICODE;_UNICODE;__NO_SYSTEM_INCLUDES;NDEBUG;POCKETPC2003_UI_MODEL" StringPooling="TRUE" RuntimeLibrary="0" EnableFunctionLevelLinking="TRUE" UsePrecompiledHeader="0" PrecompiledHeaderFile="./$(OutDir)/wce_tpcb.pch" AssemblerListingLocation="$(OutDir)/wce_tpcb/" ObjectFile="$(OutDir)/wce_tpcb/" WarningLevel="3" SuppressStartupBanner="TRUE" DebugInformationFormat="3" CompileAs="0"/>
<Tool Name="VCLinkerTool" AdditionalDependencies="" AdditionalLibraryDirectories="../lib" OutputFile="$(OutDir)/wce_tpcb.exe" ProgramDatabaseFile="$(OutDir)/wce_tpcb.pdb" LinkIncremental="1" GenerateDebugInformation="TRUE" SuppressStartupBanner="TRUE" OptimizeReferences="2" TargetMachine="0" SubSystem="9" EntryPointSymbol="WinMainCRTStartup"/>
<Tool Name="VCPreBuildEventTool"/>
<Tool Name="VCPostBuildEventTool"/>
<Tool Name="VCCustomBuildTool"/>
<DeploymentTool/></Configuration>
</Configurations>
<References/>
<Files>
<File RelativePath="..\examples\cxx\wce_tpcb\TpcbExample.cpp"/>
<File RelativePath="..\examples\cxx\wce_tpcb\TpcbUI.cpp"/>
<File RelativePath="..\examples\cxx\wce_tpcb\wce_tpcb.rc"/>
</Files>
<Globals/>
</VisualStudioProject>

View file

@ -1,9 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "db.vcproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "VS8\db.vcproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_csharp", "db_csharp.vcproj", "{13DE550F-16FD-4AC2-9EC6-B1A18F41476F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_csharp", "VS8\db_csharp.vcproj", "{13DE550F-16FD-4AC2-9EC6-B1A18F41476F}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection

View file

@ -1,9 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "db.vcxproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "VS10\db.vcxproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_csharp", "db_csharp.vcxproj", "{13DE550F-16FD-4AC2-9EC6-B1A18F41476F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_csharp", "VS10\db_csharp.vcxproj", "{13DE550F-16FD-4AC2-9EC6-B1A18F41476F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "db_dotnet", "..\lang\csharp\src\db_dotnet.csproj", "{4696FB1E-1E5F-40B9-BD8C-A54D3BDA00F6}"
ProjectSection(ProjectDependencies) = postProject

View file

@ -1,369 +1,375 @@
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "db.vcproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "VS8\db.vcproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_archive", "db_archive.vcproj", "{56056344-53A1-4FA6-B20B-862C0BA68953}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_archive", "VS8\db_archive.vcproj", "{56056344-53A1-4FA6-B20B-862C0BA68953}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_checkpoint", "db_checkpoint.vcproj", "{A3BE0163-1E6C-4235-9B6B-3A36ABB5E285}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_checkpoint", "VS8\db_checkpoint.vcproj", "{A3BE0163-1E6C-4235-9B6B-3A36ABB5E285}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_deadlock", "db_deadlock.vcproj", "{CD0FD995-B4D1-4907-987B-99CF3304E7E0}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_deadlock", "VS8\db_deadlock.vcproj", "{CD0FD995-B4D1-4907-987B-99CF3304E7E0}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_dump", "db_dump.vcproj", "{DB067D2C-7163-428B-AAF8-642316AB173B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_dump", "VS8\db_dump.vcproj", "{DB067D2C-7163-428B-AAF8-642316AB173B}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_hotbackup", "db_hotbackup.vcproj", "{67C0DABC-353A-491F-9A77-8E2E601ED52B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_hotbackup", "VS8\db_hotbackup.vcproj", "{67C0DABC-353A-491F-9A77-8E2E601ED52B}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_java", "db_java.vcproj", "{0052E828-5F10-4973-8729-50B0C5598702}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_java", "VS8\db_java.vcproj", "{0052E828-5F10-4973-8729-50B0C5598702}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_load", "db_load.vcproj", "{7640133F-4AB8-42DA-ADB5-95F21447F7D5}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_load", "VS8\db_load.vcproj", "{7640133F-4AB8-42DA-ADB5-95F21447F7D5}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_printlog", "db_printlog.vcproj", "{D505F51B-2B92-4850-A08F-9113D947FF4B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_printlog", "VS8\db_printlog.vcproj", "{D505F51B-2B92-4850-A08F-9113D947FF4B}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_recover", "db_recover.vcproj", "{9E03FD51-E387-4EEF-9EEA-E71707A56212}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_recover", "VS8\db_recover.vcproj", "{9E03FD51-E387-4EEF-9EEA-E71707A56212}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_replicate", "db_replicate.vcproj", "{2AA9FB16-F1B0-47A7-AE10-7830E4E317E2}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_replicate", "VS8\db_replicate.vcproj", "{2AA9FB16-F1B0-47A7-AE10-7830E4E317E2}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stat", "db_stat.vcproj", "{19D3A4CB-1C12-43D4-A94B-D2B387AD43E5}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stat", "VS8\db_stat.vcproj", "{19D3A4CB-1C12-43D4-A94B-D2B387AD43E5}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tcl", "db_tcl.vcproj", "{7F3D3EEE-2ABB-4F0F-A2A7-DE88C1989BE1}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tcl", "VS8\db_tcl.vcproj", "{7F3D3EEE-2ABB-4F0F-A2A7-DE88C1989BE1}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_test", "db_test.vcproj", "{B17B933F-6F75-4095-BE51-12666358163A}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_test", "VS8\db_test.vcproj", "{B17B933F-6F75-4095-BE51-12666358163A}"
ProjectSection(ProjectDependencies) = postProject
{7F3D3EEE-2ABB-4F0F-A2A7-DE88C1989BE1} = {7F3D3EEE-2ABB-4F0F-A2A7-DE88C1989BE1}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tuner", "db_tuner.vcproj", "{A86208B6-BEEB-11DF-BCF9-116EDFD72085}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tuner", "VS8\db_tuner.vcproj", "{A86208B6-BEEB-11DF-BCF9-116EDFD72085}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_upgrade", "db_upgrade.vcproj", "{5F4D66DB-8D75-43D4-A1BB-60A01BC6B32F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_upgrade", "VS8\db_upgrade.vcproj", "{5F4D66DB-8D75-43D4-A1BB-60A01BC6B32F}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_verify", "db_verify.vcproj", "{12E118CA-CAAE-4F54-AE81-8D9981AA0635}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_verify", "VS8\db_verify.vcproj", "{12E118CA-CAAE-4F54-AE81-8D9981AA0635}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "ex_access.vcproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "VS8\ex_access.vcproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "ex_bulk.vcproj", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "VS8\ex_bulk.vcproj", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "ex_btrec.vcproj", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "VS8\ex_btrec.vcproj", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "ex_csvcode.vcproj", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "VS8\ex_csvcode.vcproj", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "ex_csvload.vcproj", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "VS8\ex_csvload.vcproj", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{54E6A58D-561D-467E-B378-6BA2EE138880} = {54E6A58D-561D-467E-B378-6BA2EE138880}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "ex_csvquery.vcproj", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "VS8\ex_csvquery.vcproj", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{54E6A58D-561D-467E-B378-6BA2EE138880} = {54E6A58D-561D-467E-B378-6BA2EE138880}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "ex_env.vcproj", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "VS8\ex_env.vcproj", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "ex_heap.vcproj", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "VS8\ex_heap.vcproj", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "ex_lock.vcproj", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "VS8\ex_lock.vcproj", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "ex_mpool.vcproj", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "VS8\ex_mpool.vcproj", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "ex_rep_base.vcproj", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "VS8\ex_rep_base.vcproj", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "ex_rep_chan.vcproj", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "VS8\ex_rep_chan.vcproj", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "ex_rep_mgr.vcproj", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "VS8\ex_rep_mgr.vcproj", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "ex_sequence.vcproj", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "VS8\ex_sequence.vcproj", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "ex_tpcb.vcproj", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "VS8\ex_tpcb.vcproj", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "ex_txnguide.vcproj", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "VS8\ex_txnguide.vcproj", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "ex_txnguide_inmem.vcproj", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "VS8\ex_txnguide_inmem.vcproj", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "ex_sql_binding.vcproj", "{67965310-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "VS8\ex_sql_binding.vcproj", "{67965310-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "ex_sql_fts3.vcproj", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "VS8\ex_sql_fts3.vcproj", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "ex_sql_index.vcproj", "{67965311-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "VS8\ex_sql_index.vcproj", "{67965311-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "ex_sql_load.vcproj", "{67965312-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "VS8\ex_sql_load.vcproj", "{67965312-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "ex_sql_multi_thread.vcproj", "{67965313-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "VS8\ex_sql_multi_thread.vcproj", "{67965313-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "ex_sql_query.vcproj", "{67965314-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "VS8\ex_sql_query.vcproj", "{67965314-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "ex_sql_rtree.vcproj", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "VS8\ex_sql_rtree.vcproj", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "ex_sql_savepoint.vcproj", "{67965315-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "VS8\ex_sql_savepoint.vcproj", "{67965315-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "ex_sql_statement.vcproj", "{67965316-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "VS8\ex_sql_statement.vcproj", "{67965316-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "ex_sql_transaction.vcproj", "{67965317-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "VS8\ex_sql_transaction.vcproj", "{67965317-072A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "example_database_load.vcproj", "{56C01012-66D7-4295-B382-F3815366DB26}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "VS8\example_database_load.vcproj", "{56C01012-66D7-4295-B382-F3815366DB26}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "example_database_read.vcproj", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "VS8\example_database_read.vcproj", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "excxx_access.vcproj", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "VS8\excxx_access.vcproj", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "excxx_btrec.vcproj", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "VS8\excxx_btrec.vcproj", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "excxx_env.vcproj", "{E790C029-341D-489B-B987-D35947AD78C3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "VS8\excxx_env.vcproj", "{E790C029-341D-489B-B987-D35947AD78C3}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "excxx_example_database_load.vcproj", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "VS8\excxx_example_database_load.vcproj", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "excxx_example_database_read.vcproj", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "VS8\excxx_example_database_read.vcproj", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "excxx_lock.vcproj", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "VS8\excxx_lock.vcproj", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "excxx_mpool.vcproj", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "VS8\excxx_mpool.vcproj", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "excxx_repquote.vcproj", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "VS8\excxx_repquote.vcproj", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "excxx_sequence.vcproj", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "VS8\excxx_sequence.vcproj", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "excxx_tpcb.vcproj", "{77BD278B-7927-4C88-9198-5067C549398D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "VS8\excxx_tpcb.vcproj", "{77BD278B-7927-4C88-9198-5067C549398D}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "excxx_txnguide.vcproj", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "VS8\excxx_txnguide.vcproj", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "excxx_txnguide_inmem.vcproj", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "VS8\excxx_txnguide_inmem.vcproj", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "php_db4", "php_db4.vcproj", "{44AFD8B5-687F-4B9D-B163-1F381CC11794}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "php_db4", "VS8\php_db4.vcproj", "{44AFD8B5-687F-4B9D-B163-1F381CC11794}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_cutest", "test_cutest.vcproj", "{086BD200-FDC6-11DF-8CFF-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_cutest", "VS8\test_cutest.vcproj", "{086BD200-FDC6-11DF-8CFF-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{A86208B6-BEEB-11DF-BCF9-116EDFD72085} = {A86208B6-BEEB-11DF-BCF9-116EDFD72085}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stl", "db_stl.vcproj", "{284CC197-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stl", "VS8\db_stl.vcproj", "{284CC197-0C66-11DE-8C30-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "exstl_access.vcproj", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "VS8\exstl_access.vcproj", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{284CC197-0C66-11DE-8C30-0800200C9A66} = {284CC197-0C66-11DE-8C30-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "exstl_advancedfeatures.vcproj", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "VS8\exstl_advancedfeatures.vcproj", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{284CC197-0C66-11DE-8C30-0800200C9A66} = {284CC197-0C66-11DE-8C30-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "exstl_repquote.vcproj", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "VS8\exstl_repquote.vcproj", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{284CC197-0C66-11DE-8C30-0800200C9A66} = {284CC197-0C66-11DE-8C30-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "exstl_tpcb.vcproj", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "VS8\exstl_tpcb.vcproj", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{284CC197-0C66-11DE-8C30-0800200C9A66} = {284CC197-0C66-11DE-8C30-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "exstl_txnguide.vcproj", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "VS8\exstl_txnguide.vcproj", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{284CC197-0C66-11DE-8C30-0800200C9A66} = {284CC197-0C66-11DE-8C30-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "ex_stream.vcproj", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "VS8\ex_stream.vcproj", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql", "db_sql.vcproj", "{4B65E600-064A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql", "VS8\db_sql.vcproj", "{4B65E600-064A-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_log_verify", "db_log_verify.vcproj", "{872961A3-877A-4B53-886D-F1FB65073608}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_log_verify", "VS8\db_log_verify.vcproj", "{872961A3-877A-4B53-886D-F1FB65073608}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_codegen", "db_sql_codegen.vcproj", "{738EE880-0E33-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_codegen", "VS8\db_sql_codegen.vcproj", "{738EE880-0E33-11DE-8C30-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_testfixture", "db_sql_testfixture.vcproj", "{5D79B660-0667-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_shell", "db_sql_shell.vcproj", "{A5DB89F0-06E5-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_jdbc", "VS8\db_sql_jdbc.vcproj", "{433EAC30-1CEA-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_small", "db_small.vcproj", "{B7124116-7A43-4BF1-B727-4C8ADE40FF7F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_testfixture", "VS8\db_sql_testfixture.vcproj", "{5D79B660-0667-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_shell", "VS8\db_sql_shell.vcproj", "{A5DB89F0-06E5-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_small", "VS8\db_small.vcproj", "{B7124116-7A43-4BF1-B727-4C8ADE40FF7F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -1209,6 +1215,14 @@ Global
{738EE880-0E33-11DE-8C30-0800200C9A66}.Static Debug|x64.ActiveCfg = Debug|x64
{738EE880-0E33-11DE-8C30-0800200C9A66}.Static Release|Win32.ActiveCfg = Release|Win32
{738EE880-0E33-11DE-8C30-0800200C9A66}.Static Release|x64.ActiveCfg = Release|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Release|x64.ActiveCfg = Release|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Debug|Win32.ActiveCfg = Debug|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Debug|x64.ActiveCfg = Debug|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Release|Win32.ActiveCfg = Release|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Release|x64.ActiveCfg = Release|x64
{5D79B660-0667-11DF-8A39-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{5D79B660-0667-11DF-8A39-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64
{5D79B660-0667-11DF-8A39-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32

View file

@ -1,106 +1,106 @@
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "ex_access.vcproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "VS8\ex_access.vcproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "ex_btrec.vcproj", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "VS8\ex_btrec.vcproj", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "ex_bulk.vcproj", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "VS8\ex_bulk.vcproj", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "ex_csvcode.vcproj", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "VS8\ex_csvcode.vcproj", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "ex_csvload.vcproj", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "VS8\ex_csvload.vcproj", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
ProjectSection(ProjectDependencies) = postProject
{54E6A58D-561D-467E-B378-6BA2EE138880} = {54E6A58D-561D-467E-B378-6BA2EE138880}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "ex_csvquery.vcproj", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "VS8\ex_csvquery.vcproj", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
ProjectSection(ProjectDependencies) = postProject
{54E6A58D-561D-467E-B378-6BA2EE138880} = {54E6A58D-561D-467E-B378-6BA2EE138880}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "ex_env.vcproj", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "VS8\ex_env.vcproj", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "ex_heap.vcproj", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "VS8\ex_heap.vcproj", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "ex_lock.vcproj", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "VS8\ex_lock.vcproj", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_java", "ex_java.vcproj", "{ecfcd4d6-3063-11df-95b2-000d88a6f448}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_java", "VS8\ex_java.vcproj", "{ECFCD4D6-3063-11DF-95B2-000D88A6F448}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "ex_mpool.vcproj", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "VS8\ex_mpool.vcproj", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "ex_rep_base.vcproj", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "VS8\ex_rep_base.vcproj", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "ex_rep_chan.vcproj", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "VS8\ex_rep_chan.vcproj", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "ex_rep_mgr.vcproj", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "VS8\ex_rep_mgr.vcproj", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "ex_sequence.vcproj", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "VS8\ex_sequence.vcproj", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "ex_tpcb.vcproj", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "VS8\ex_tpcb.vcproj", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "ex_txnguide.vcproj", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "VS8\ex_txnguide.vcproj", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "ex_txnguide_inmem.vcproj", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "VS8\ex_txnguide_inmem.vcproj", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "ex_sql_binding.vcproj", "{67965310-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "VS8\ex_sql_binding.vcproj", "{67965310-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "ex_sql_fts3.vcproj", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "VS8\ex_sql_fts3.vcproj", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "ex_sql_index.vcproj", "{67965311-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "VS8\ex_sql_index.vcproj", "{67965311-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "ex_sql_load.vcproj", "{67965312-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "VS8\ex_sql_load.vcproj", "{67965312-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "ex_sql_multi_thread.vcproj", "{67965313-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "VS8\ex_sql_multi_thread.vcproj", "{67965313-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "ex_sql_query.vcproj", "{67965314-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "VS8\ex_sql_query.vcproj", "{67965314-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "ex_sql_rtree.vcproj", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "VS8\ex_sql_rtree.vcproj", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "ex_sql_savepoint.vcproj", "{67965315-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "VS8\ex_sql_savepoint.vcproj", "{67965315-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "ex_sql_statement.vcproj", "{67965316-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "VS8\ex_sql_statement.vcproj", "{67965316-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "ex_sql_transaction.vcproj", "{67965317-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "VS8\ex_sql_transaction.vcproj", "{67965317-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "example_database_load.vcproj", "{56C01012-66D7-4295-B382-F3815366DB26}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "VS8\example_database_load.vcproj", "{56C01012-66D7-4295-B382-F3815366DB26}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "example_database_read.vcproj", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "VS8\example_database_read.vcproj", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "excxx_access.vcproj", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "VS8\excxx_access.vcproj", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "excxx_btrec.vcproj", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "VS8\excxx_btrec.vcproj", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "excxx_env.vcproj", "{E790C029-341D-489B-B987-D35947AD78C3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "VS8\excxx_env.vcproj", "{E790C029-341D-489B-B987-D35947AD78C3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "excxx_example_database_load.vcproj", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "VS8\excxx_example_database_load.vcproj", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "excxx_example_database_read.vcproj", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "VS8\excxx_example_database_read.vcproj", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "excxx_lock.vcproj", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "VS8\excxx_lock.vcproj", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "excxx_mpool.vcproj", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "VS8\excxx_mpool.vcproj", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "excxx_repquote.vcproj", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "VS8\excxx_repquote.vcproj", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "excxx_sequence.vcproj", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "VS8\excxx_sequence.vcproj", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "excxx_tpcb.vcproj", "{77BD278B-7927-4C88-9198-5067C549398D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "VS8\excxx_tpcb.vcproj", "{77BD278B-7927-4C88-9198-5067C549398D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "excxx_txnguide.vcproj", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "VS8\excxx_txnguide.vcproj", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "excxx_txnguide_inmem.vcproj", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "VS8\excxx_txnguide_inmem.vcproj", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "exstl_access.vcproj", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "VS8\exstl_access.vcproj", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "exstl_advancedfeatures.vcproj", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "VS8\exstl_advancedfeatures.vcproj", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "exstl_repquote.vcproj", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "VS8\exstl_repquote.vcproj", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "exstl_tpcb.vcproj", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "VS8\exstl_tpcb.vcproj", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "exstl_txnguide.vcproj", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "VS8\exstl_txnguide.vcproj", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "ex_stream.vcproj", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "VS8\ex_stream.vcproj", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -122,6 +122,12 @@ Global
{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}.Release|Win32.ActiveCfg = Release|Win32
{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}.Release|Win32.Build.0 = Release|Win32
{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}.Release|x64.ActiveCfg = Release|Win32
{ABE1ACF6-C375-44AB-A628-80B4A94580FD}.Debug|Win32.ActiveCfg = Debug|Win32
{ABE1ACF6-C375-44AB-A628-80B4A94580FD}.Debug|Win32.Build.0 = Debug|Win32
{ABE1ACF6-C375-44AB-A628-80B4A94580FD}.Debug|x64.ActiveCfg = Debug|Win32
{ABE1ACF6-C375-44AB-A628-80B4A94580FD}.Release|Win32.ActiveCfg = Release|Win32
{ABE1ACF6-C375-44AB-A628-80B4A94580FD}.Release|Win32.Build.0 = Release|Win32
{ABE1ACF6-C375-44AB-A628-80B4A94580FD}.Release|x64.ActiveCfg = Release|Win32
{54E6A58D-561D-467E-B378-6BA2EE138880}.Debug|Win32.ActiveCfg = Debug|Win32
{54E6A58D-561D-467E-B378-6BA2EE138880}.Debug|Win32.Build.0 = Debug|Win32
{54E6A58D-561D-467E-B378-6BA2EE138880}.Debug|x64.ActiveCfg = Debug|Win32
@ -146,12 +152,24 @@ Global
{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}.Release|Win32.ActiveCfg = Release|Win32
{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}.Release|Win32.Build.0 = Release|Win32
{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}.Release|x64.ActiveCfg = Release|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Debug|Win32.ActiveCfg = Debug|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Debug|Win32.Build.0 = Debug|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Debug|x64.ActiveCfg = Debug|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Release|Win32.ActiveCfg = Release|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Release|Win32.Build.0 = Release|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Release|x64.ActiveCfg = Release|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Debug|Win32.ActiveCfg = Debug|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Debug|Win32.Build.0 = Debug|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Debug|x64.ActiveCfg = Debug|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Release|Win32.ActiveCfg = Release|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Release|Win32.Build.0 = Release|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Release|x64.ActiveCfg = Release|Win32
{ECFCD4D6-3063-11DF-95B2-000D88A6F448}.Debug|Win32.ActiveCfg = Debug|Win32
{ECFCD4D6-3063-11DF-95B2-000D88A6F448}.Debug|Win32.Build.0 = Debug|Win32
{ECFCD4D6-3063-11DF-95B2-000D88A6F448}.Debug|x64.ActiveCfg = Debug|Win32
{ECFCD4D6-3063-11DF-95B2-000D88A6F448}.Release|Win32.ActiveCfg = Release|Win32
{ECFCD4D6-3063-11DF-95B2-000D88A6F448}.Release|Win32.Build.0 = Release|Win32
{ECFCD4D6-3063-11DF-95B2-000D88A6F448}.Release|x64.ActiveCfg = Release|Win32
{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}.Debug|Win32.ActiveCfg = Debug|Win32
{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}.Debug|Win32.Build.0 = Debug|Win32
{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}.Debug|x64.ActiveCfg = Debug|Win32
@ -164,6 +182,12 @@ Global
{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}.Release|Win32.ActiveCfg = Release|Win32
{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}.Release|Win32.Build.0 = Release|Win32
{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}.Release|x64.ActiveCfg = Release|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Debug|x64.ActiveCfg = Debug|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Release|Win32.Build.0 = Release|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Release|x64.ActiveCfg = Release|Win32
{365A89B8-B5A5-4EC6-990B-08254028E1A6}.Debug|Win32.ActiveCfg = Debug|Win32
{365A89B8-B5A5-4EC6-990B-08254028E1A6}.Debug|Win32.Build.0 = Debug|Win32
{365A89B8-B5A5-4EC6-990B-08254028E1A6}.Debug|x64.ActiveCfg = Debug|Win32
@ -200,6 +224,12 @@ Global
{67965310-072A-11DF-8A39-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32
{67965310-072A-11DF-8A39-0800200C9A66}.Release|Win32.Build.0 = Release|Win32
{67965310-072A-11DF-8A39-0800200C9A66}.Release|x64.ActiveCfg = Release|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Debug|Win32.ActiveCfg = Debug|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Debug|Win32.Build.0 = Debug|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Debug|x64.ActiveCfg = Debug|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Release|Win32.ActiveCfg = Release|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Release|Win32.Build.0 = Release|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Release|x64.ActiveCfg = Release|Win32
{67965311-072A-11DF-8A39-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{67965311-072A-11DF-8A39-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32
{67965311-072A-11DF-8A39-0800200C9A66}.Debug|x64.ActiveCfg = Debug|Win32
@ -224,6 +254,12 @@ Global
{67965314-072A-11DF-8A39-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32
{67965314-072A-11DF-8A39-0800200C9A66}.Release|Win32.Build.0 = Release|Win32
{67965314-072A-11DF-8A39-0800200C9A66}.Release|x64.ActiveCfg = Release|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Debug|Win32.ActiveCfg = Debug|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Debug|Win32.Build.0 = Debug|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Debug|x64.ActiveCfg = Debug|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Release|Win32.ActiveCfg = Release|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Release|Win32.Build.0 = Release|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Release|x64.ActiveCfg = Release|Win32
{67965315-072A-11DF-8A39-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{67965315-072A-11DF-8A39-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32
{67965315-072A-11DF-8A39-0800200C9A66}.Debug|x64.ActiveCfg = Debug|Win32
@ -362,19 +398,7 @@ Global
{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}.Release|Win32.ActiveCfg = Release|Win32
{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}.Release|Win32.Build.0 = Release|Win32
{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}.Release|x64.ActiveCfg = Release|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Debug|Win32.ActiveCfg = Debug|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Debug|Win32.Build.0 = Debug|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Debug|x64.ActiveCfg = Debug|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Release|Win32.ActiveCfg = Release|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Release|Win32.Build.0 = Release|Win32
{9CBFC33A-027B-4A58-8059-2E3C29489E64}.Release|x64.ActiveCfg = Release|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Debug|Win32.ActiveCfg = Debug|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Debug|Win32.Build.0 = Debug|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Debug|x64.ActiveCfg = Debug|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Release|Win32.ActiveCfg = Release|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Release|Win32.Build.0 = Release|Win32
{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}.Release|x64.ActiveCfg = Release|Win32
EndGlobalSection
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection

View file

@ -1,100 +1,100 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "ex_access.vcxproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "VS10\ex_access.vcxproj"", "{75DF98AA-25DF-4183-A022-024CF918480D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "ex_btrec.vcxproj", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "VS10\ex_btrec.vcxproj"", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "ex_bulk.vcxproj", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "VS10\ex_bulk.vcxproj"", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "ex_csvcode.vcxproj", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "VS10\ex_csvcode.vcxproj"", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "ex_csvload.vcxproj", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "VS10\ex_csvload.vcxproj"", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "ex_csvquery.vcxproj", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "VS10\ex_csvquery.vcxproj"", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "ex_env.vcxproj", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "VS10\ex_env.vcxproj"", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "ex_heap.vcxproj", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "VS10\ex_heap.vcxproj"", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "ex_lock.vcxproj", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "VS10\ex_lock.vcxproj"", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_java", "ex_java.vcxproj", "{ECFCD4D6-3063-11DF-95B2-000D88A6F448}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_java", "VS10\ex_java.vcxproj"", "{ECFCD4D6-3063-11DF-95B2-000D88A6F448}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "ex_mpool.vcxproj", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "VS10\ex_mpool.vcxproj"", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "ex_rep_base.vcxproj", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "VS10\ex_rep_base.vcxproj"", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "ex_rep_chan.vcxproj", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "VS10\ex_rep_chan.vcxproj"", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "ex_rep_mgr.vcxproj", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "VS10\ex_rep_mgr.vcxproj"", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "ex_sequence.vcxproj", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "VS10\ex_sequence.vcxproj"", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "ex_tpcb.vcxproj", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "VS10\ex_tpcb.vcxproj"", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "ex_txnguide.vcxproj", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "VS10\ex_txnguide.vcxproj"", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "ex_txnguide_inmem.vcxproj", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "VS10\ex_txnguide_inmem.vcxproj"", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "ex_sql_binding.vcxproj", "{67965310-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "VS10\ex_sql_binding.vcxproj"", "{67965310-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "ex_sql_fts3.vcxproj", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "VS10\ex_sql_fts3.vcxproj"", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "ex_sql_index.vcxproj", "{67965311-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "VS10\ex_sql_index.vcxproj"", "{67965311-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "ex_sql_load.vcxproj", "{67965312-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "VS10\ex_sql_load.vcxproj"", "{67965312-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "ex_sql_multi_thread.vcxproj", "{67965313-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "VS10\ex_sql_multi_thread.vcxproj"", "{67965313-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "ex_sql_query.vcxproj", "{67965314-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "VS10\ex_sql_query.vcxproj"", "{67965314-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "ex_sql_rtree.vcxproj", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "VS10\ex_sql_rtree.vcxproj"", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "ex_sql_savepoint.vcxproj", "{67965315-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "VS10\ex_sql_savepoint.vcxproj"", "{67965315-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "ex_sql_statement.vcxproj", "{67965316-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "VS10\ex_sql_statement.vcxproj"", "{67965316-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "ex_sql_transaction.vcxproj", "{67965317-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "VS10\ex_sql_transaction.vcxproj"", "{67965317-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "example_database_load.vcxproj", "{56C01012-66D7-4295-B382-F3815366DB26}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "VS10\example_database_load.vcxproj"", "{56C01012-66D7-4295-B382-F3815366DB26}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "example_database_read.vcxproj", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "VS10\example_database_read.vcxproj"", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "excxx_access.vcxproj", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "VS10\excxx_access.vcxproj"", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "excxx_btrec.vcxproj", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "VS10\excxx_btrec.vcxproj"", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "excxx_env.vcxproj", "{E790C029-341D-489B-B987-D35947AD78C3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "VS10\excxx_env.vcxproj"", "{E790C029-341D-489B-B987-D35947AD78C3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "excxx_example_database_load.vcxproj", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "VS10\excxx_example_database_load.vcxproj"", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "excxx_example_database_read.vcxproj", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "VS10\excxx_example_database_read.vcxproj"", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "excxx_lock.vcxproj", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "VS10\excxx_lock.vcxproj"", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "excxx_mpool.vcxproj", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "VS10\excxx_mpool.vcxproj"", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "excxx_repquote.vcxproj", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "VS10\excxx_repquote.vcxproj"", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "excxx_sequence.vcxproj", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "VS10\excxx_sequence.vcxproj"", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "excxx_tpcb.vcxproj", "{77BD278B-7927-4C88-9198-5067C549398D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "VS10\excxx_tpcb.vcxproj"", "{77BD278B-7927-4C88-9198-5067C549398D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "excxx_txnguide.vcxproj", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "VS10\excxx_txnguide.vcxproj"", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "excxx_txnguide_inmem.vcxproj", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "VS10\excxx_txnguide_inmem.vcxproj"", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "exstl_access.vcxproj", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "VS10\exstl_access.vcxproj"", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "exstl_advancedfeatures.vcxproj", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "VS10\exstl_advancedfeatures.vcxproj"", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "exstl_repquote.vcxproj", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "VS10\exstl_repquote.vcxproj"", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "exstl_tpcb.vcxproj", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "VS10\exstl_tpcb.vcxproj"", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "exstl_txnguide.vcxproj", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "VS10\exstl_txnguide.vcxproj"", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "ex_stream.vcxproj", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "VS10\ex_stream.vcxproj"", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View file

@ -1,150 +1,156 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "db.vcxproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db", "VS10\db.vcxproj", "{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_archive", "db_archive.vcxproj", "{56056344-53A1-4FA6-B20B-862C0BA68953}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_archive", "VS10\db_archive.vcxproj", "{56056344-53A1-4FA6-B20B-862C0BA68953}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_checkpoint", "db_checkpoint.vcxproj", "{A3BE0163-1E6C-4235-9B6B-3A36ABB5E285}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_checkpoint", "VS10\db_checkpoint.vcxproj", "{A3BE0163-1E6C-4235-9B6B-3A36ABB5E285}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_deadlock", "db_deadlock.vcxproj", "{CD0FD995-B4D1-4907-987B-99CF3304E7E0}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_deadlock", "VS10\db_deadlock.vcxproj", "{CD0FD995-B4D1-4907-987B-99CF3304E7E0}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_dump", "db_dump.vcxproj", "{DB067D2C-7163-428B-AAF8-642316AB173B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_dump", "VS10\db_dump.vcxproj", "{DB067D2C-7163-428B-AAF8-642316AB173B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_hotbackup", "db_hotbackup.vcxproj", "{67C0DABC-353A-491F-9A77-8E2E601ED52B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_hotbackup", "VS10\db_hotbackup.vcxproj", "{67C0DABC-353A-491F-9A77-8E2E601ED52B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_java", "db_java.vcxproj", "{0052E828-5F10-4973-8729-50B0C5598702}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_java", "VS10\db_java.vcxproj", "{0052E828-5F10-4973-8729-50B0C5598702}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_load", "db_load.vcxproj", "{7640133F-4AB8-42DA-ADB5-95F21447F7D5}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_load", "VS10\db_load.vcxproj", "{7640133F-4AB8-42DA-ADB5-95F21447F7D5}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_printlog", "db_printlog.vcxproj", "{D505F51B-2B92-4850-A08F-9113D947FF4B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_printlog", "VS10\db_printlog.vcxproj", "{D505F51B-2B92-4850-A08F-9113D947FF4B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_recover", "db_recover.vcxproj", "{9E03FD51-E387-4EEF-9EEA-E71707A56212}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_recover", "VS10\db_recover.vcxproj", "{9E03FD51-E387-4EEF-9EEA-E71707A56212}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_replicate", "db_replicate.vcxproj", "{2AA9FB16-F1B0-47A7-AE10-7830E4E317E2}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_replicate", "VS10\db_replicate.vcxproj", "{2AA9FB16-F1B0-47A7-AE10-7830E4E317E2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stat", "db_stat.vcxproj", "{19D3A4CB-1C12-43D4-A94B-D2B387AD43E5}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stat", "VS10\db_stat.vcxproj", "{19D3A4CB-1C12-43D4-A94B-D2B387AD43E5}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tcl", "db_tcl.vcxproj", "{7F3D3EEE-2ABB-4F0F-A2A7-DE88C1989BE1}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tcl", "VS10\db_tcl.vcxproj", "{7F3D3EEE-2ABB-4F0F-A2A7-DE88C1989BE1}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_test", "db_test.vcxproj", "{B17B933F-6F75-4095-BE51-12666358163A}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_test", "VS10\db_test.vcxproj", "{B17B933F-6F75-4095-BE51-12666358163A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tuner", "db_tuner.vcxproj", "{A86208B6-BEEB-11DF-BCF9-116EDFD72085}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_tuner", "VS10\db_tuner.vcxproj", "{A86208B6-BEEB-11DF-BCF9-116EDFD72085}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_upgrade", "db_upgrade.vcxproj", "{5F4D66DB-8D75-43D4-A1BB-60A01BC6B32F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_upgrade", "VS10\db_upgrade.vcxproj", "{5F4D66DB-8D75-43D4-A1BB-60A01BC6B32F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_verify", "db_verify.vcxproj", "{12E118CA-CAAE-4F54-AE81-8D9981AA0635}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_verify", "VS10\db_verify.vcxproj", "{12E118CA-CAAE-4F54-AE81-8D9981AA0635}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "ex_access.vcxproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_access", "VS10\ex_access.vcxproj", "{75DF98AA-25DF-4183-A022-024CF918480D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "ex_bulk.vcxproj", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_bulk", "VS10\ex_bulk.vcxproj", "{ABE1ACF6-C375-44AB-A628-80B4A94580FD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "ex_btrec.vcxproj", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_btrec", "VS10\ex_btrec.vcxproj", "{5DD66F4B-EB4A-4453-BC31-3FF7B2240634}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "ex_csvcode.vcxproj", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvcode", "VS10\ex_csvcode.vcxproj", "{54E6A58D-561D-467E-B378-6BA2EE138880}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "ex_csvload.vcxproj", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvload", "VS10\ex_csvload.vcxproj", "{CEC6CC37-88A3-4573-8957-6BA0CEF94B3D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "ex_csvquery.vcxproj", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_csvquery", "VS10\ex_csvquery.vcxproj", "{438BEA9C-A9DF-4EAE-A9F7-A5F35CAF3FB9}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "ex_env.vcxproj", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_env", "VS10\ex_env.vcxproj", "{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "ex_heap.vcxproj", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_heap", "VS10\ex_heap.vcxproj", "{B736B89C-B7EE-4C45-88BA-174B9A1956B3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "ex_lock.vcxproj", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_lock", "VS10\ex_lock.vcxproj", "{B254668F-C28F-4B14-92A5-3BF4B83D02EE}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "ex_mpool.vcxproj", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_mpool", "VS10\ex_mpool.vcxproj", "{0F6925F0-6243-47E0-A0FF-05F70B15FC2C}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "ex_rep_base.vcxproj", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_base", "VS10\ex_rep_base.vcxproj", "{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "ex_rep_chan.vcxproj", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_chan", "VS10\ex_rep_chan.vcxproj", "{080516C0-670A-11E0-AE3E-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "ex_rep_mgr.vcxproj", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_rep_mgr", "VS10\ex_rep_mgr.vcxproj", "{365A89B8-B5A5-4EC6-990B-08254028E1A6}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "ex_sequence.vcxproj", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sequence", "VS10\ex_sequence.vcxproj", "{4E43DB5C-D050-4003-A4FF-6294D9F498DD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "ex_tpcb.vcxproj", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_tpcb", "VS10\ex_tpcb.vcxproj", "{8632C58A-CC00-4116-B61A-CBE0F2C11CAD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "ex_txnguide.vcxproj", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide", "VS10\ex_txnguide.vcxproj", "{80B961C4-D1D6-48E9-8965-CFCE69BF85E2}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "ex_txnguide_inmem.vcxproj", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_txnguide_inmem", "VS10\ex_txnguide_inmem.vcxproj", "{925BD215-6680-4FFF-8345-0741E4627B1F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "ex_sql_binding.vcxproj", "{67965310-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_binding", "VS10\ex_sql_binding.vcxproj", "{67965310-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "ex_sql_fts3.vcxproj", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_fts3", "VS10\ex_sql_fts3.vcxproj", "{FF1CAD6A-1EDF-4AD3-9A4F-8C76B7214A13}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "ex_sql_index.vcxproj", "{67965311-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_index", "VS10\ex_sql_index.vcxproj", "{67965311-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "ex_sql_load.vcxproj", "{67965312-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_load", "VS10\ex_sql_load.vcxproj", "{67965312-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "ex_sql_multi_thread.vcxproj", "{67965313-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_multi_thread", "VS10\ex_sql_multi_thread.vcxproj", "{67965313-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "ex_sql_query.vcxproj", "{67965314-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_query", "VS10\ex_sql_query.vcxproj", "{67965314-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "ex_sql_rtree.vcxproj", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_rtree", "VS10\ex_sql_rtree.vcxproj", "{9CBFC33A-027B-4A58-8059-2E3C29489E64}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "ex_sql_savepoint.vcxproj", "{67965315-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_savepoint", "VS10\ex_sql_savepoint.vcxproj", "{67965315-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "ex_sql_statement.vcxproj", "{67965316-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_statement", "VS10\ex_sql_statement.vcxproj", "{67965316-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "ex_sql_transaction.vcxproj", "{67965317-072A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_sql_transaction", "VS10\ex_sql_transaction.vcxproj", "{67965317-072A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "example_database_load.vcxproj", "{56C01012-66D7-4295-B382-F3815366DB26}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_load", "VS10\example_database_load.vcxproj", "{56C01012-66D7-4295-B382-F3815366DB26}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "example_database_read.vcxproj", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_database_read", "VS10\example_database_read.vcxproj", "{0D35F7E6-425B-4D09-B805-B6D47A9B4AB3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "excxx_access.vcxproj", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_access", "VS10\excxx_access.vcxproj", "{2575F0DD-DAA5-4AE5-AC81-7C47507AD279}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "excxx_btrec.vcxproj", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_btrec", "VS10\excxx_btrec.vcxproj", "{38C080B1-7003-48DF-820D-06348BC87B1B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "excxx_env.vcxproj", "{E790C029-341D-489B-B987-D35947AD78C3}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_env", "VS10\excxx_env.vcxproj", "{E790C029-341D-489B-B987-D35947AD78C3}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "excxx_example_database_load.vcxproj", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_load", "VS10\excxx_example_database_load.vcxproj", "{A4F42222-FE02-431D-A046-B049E516DEB7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "excxx_example_database_read.vcxproj", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_example_database_read", "VS10\excxx_example_database_read.vcxproj", "{81C97B03-193C-4021-A78E-F0A2A2AFAA87}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "excxx_lock.vcxproj", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_lock", "VS10\excxx_lock.vcxproj", "{19393F5D-DBBE-450C-9217-EA0C7503E277}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "excxx_mpool.vcxproj", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_mpool", "VS10\excxx_mpool.vcxproj", "{DAEDD51B-0FED-4779-A99A-C09E4D2ACB5E}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "excxx_repquote.vcxproj", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_repquote", "VS10\excxx_repquote.vcxproj", "{75046027-E052-4E8B-AE87-E27DE9C2BC21}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "excxx_sequence.vcxproj", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_sequence", "VS10\excxx_sequence.vcxproj", "{D90AE774-03EF-4945-A3C3-AC76BF90825F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "excxx_tpcb.vcxproj", "{77BD278B-7927-4C88-9198-5067C549398D}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_tpcb", "VS10\excxx_tpcb.vcxproj", "{77BD278B-7927-4C88-9198-5067C549398D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "excxx_txnguide.vcxproj", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide", "VS10\excxx_txnguide.vcxproj", "{2E9B94E9-024C-4255-9104-BA81FF7F2591}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "excxx_txnguide_inmem.vcxproj", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "excxx_txnguide_inmem", "VS10\excxx_txnguide_inmem.vcxproj", "{009413E4-EFDF-42FB-8631-931CFAEAAB72}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "php_db4", "php_db4.vcxproj", "{44AFD8B5-687F-4B9D-B163-1F381CC11794}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "php_db4", "VS10\php_db4.vcxproj", "{44AFD8B5-687F-4B9D-B163-1F381CC11794}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_cutest", "test_cutest.vcxproj", "{086BD200-FDC6-11DF-8CFF-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_cutest", "VS10\test_cutest.vcxproj", "{086BD200-FDC6-11DF-8CFF-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stl", "db_stl.vcxproj", "{284CC197-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_stl", "VS10\db_stl.vcxproj", "{284CC197-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "exstl_access.vcxproj", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_access", "VS10\exstl_access.vcxproj", "{284CC190-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "exstl_advancedfeatures.vcxproj", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_advancedfeatures", "VS10\exstl_advancedfeatures.vcxproj", "{8E5423C1-0177-4A14-86BC-75F0895E7198}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "exstl_repquote.vcxproj", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_repquote", "VS10\exstl_repquote.vcxproj", "{284CC191-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "exstl_tpcb.vcxproj", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_tpcb", "VS10\exstl_tpcb.vcxproj", "{284CC192-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "exstl_txnguide.vcxproj", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "exstl_txnguide", "VS10\exstl_txnguide.vcxproj", "{284CC193-0C66-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "ex_stream.vcxproj", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ex_stream", "VS10\ex_stream.vcxproj", "{8F3D872E-C7F5-4C0D-9974-0F0CB9DAA527}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql", "db_sql.vcxproj", "{4B65E600-064A-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql", "VS10\db_sql.vcxproj", "{4B65E600-064A-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_small", "db_small.vcxproj", "{B7124116-7A43-4BF1-B727-4C8ADE40FF7F}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_small", "VS10\db_small.vcxproj", "{B7124116-7A43-4BF1-B727-4C8ADE40FF7F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_log_verify", "db_log_verify.vcxproj", "{872961A3-877A-4B53-886D-F1FB65073608}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_log_verify", "VS10\db_log_verify.vcxproj", "{872961A3-877A-4B53-886D-F1FB65073608}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_codegen", "db_sql_codegen.vcxproj", "{738EE880-0E33-11DE-8C30-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_codegen", "VS10\db_sql_codegen.vcxproj", "{738EE880-0E33-11DE-8C30-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_testfixture", "db_sql_testfixture.vcxproj", "{5D79B660-0667-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_jdbc", "VS10\db_sql_jdbc.vcxproj", "{433EAC30-1CEA-11DF-8A39-0800200C9A66}"
ProjectSection(ProjectDependencies) = postProject
{4B65E600-064A-11DF-8A39-0800200C9A66} = {4B65E600-064A-11DF-8A39-0800200C9A66}
{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7} = {FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_shell", "db_sql_shell.vcxproj", "{A5DB89F0-06E5-11DF-8A39-0800200C9A66}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_testfixture", "VS10\db_sql_testfixture.vcxproj", "{5D79B660-0667-11DF-8A39-0800200C9A66}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "db_sql_shell", "VS10\db_sql_shell.vcxproj", "{A5DB89F0-06E5-11DF-8A39-0800200C9A66}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -426,6 +432,18 @@ Global
{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}.Static Debug|x64.ActiveCfg = Debug|x64
{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}.Static Release|Win32.ActiveCfg = Release|Win32
{443530F5-CCC3-40C8-A89B-AEF6C14D3A41}.Static Release|x64.ActiveCfg = Release|x64
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Debug|Win32.ActiveCfg = Debug|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Debug|Win32.Build.0 = Debug|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Debug|x64.ActiveCfg = Debug|x64
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Debug|x64.Build.0 = Debug|x64
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Release|Win32.ActiveCfg = Release|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Release|Win32.Build.0 = Release|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Release|x64.ActiveCfg = Release|x64
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Release|x64.Build.0 = Release|x64
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Static Debug|Win32.ActiveCfg = Debug|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Static Debug|x64.ActiveCfg = Debug|x64
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Static Release|Win32.ActiveCfg = Release|Win32
{B736B89C-B7EE-4C45-88BA-174B9A1956B3}.Static Release|x64.ActiveCfg = Release|x64
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Debug|Win32.ActiveCfg = Debug|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Debug|Win32.Build.0 = Debug|Win32
{B254668F-C28F-4B14-92A5-3BF4B83D02EE}.Debug|x64.ActiveCfg = Debug|x64
@ -462,6 +480,18 @@ Global
{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}.Static Debug|x64.ActiveCfg = Debug|x64
{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}.Static Release|Win32.ActiveCfg = Release|Win32
{BDBF0EE2-1551-47A4-ACD0-B22B05DF4D77}.Static Release|x64.ActiveCfg = Release|x64
{080516C0-670A-11E0-AE3E-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64
{080516C0-670A-11E0-AE3E-0800200C9A66}.Debug|x64.Build.0 = Debug|x64
{080516C0-670A-11E0-AE3E-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Release|Win32.Build.0 = Release|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Release|x64.ActiveCfg = Release|x64
{080516C0-670A-11E0-AE3E-0800200C9A66}.Release|x64.Build.0 = Release|x64
{080516C0-670A-11E0-AE3E-0800200C9A66}.Static Debug|Win32.ActiveCfg = Debug|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Static Debug|x64.ActiveCfg = Debug|x64
{080516C0-670A-11E0-AE3E-0800200C9A66}.Static Release|Win32.ActiveCfg = Release|Win32
{080516C0-670A-11E0-AE3E-0800200C9A66}.Static Release|x64.ActiveCfg = Release|x64
{365A89B8-B5A5-4EC6-990B-08254028E1A6}.Debug|Win32.ActiveCfg = Debug|Win32
{365A89B8-B5A5-4EC6-990B-08254028E1A6}.Debug|Win32.Build.0 = Debug|Win32
{365A89B8-B5A5-4EC6-990B-08254028E1A6}.Debug|x64.ActiveCfg = Debug|x64
@ -966,6 +996,14 @@ Global
{738EE880-0E33-11DE-8C30-0800200C9A66}.Static Debug|x64.ActiveCfg = Debug|x64
{738EE880-0E33-11DE-8C30-0800200C9A66}.Static Release|Win32.ActiveCfg = Release|Win32
{738EE880-0E33-11DE-8C30-0800200C9A66}.Static Release|x64.ActiveCfg = Release|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Release|x64.ActiveCfg = Release|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Debug|Win32.ActiveCfg = Debug|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Debug|x64.ActiveCfg = Debug|x64
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Release|Win32.ActiveCfg = Release|Win32
{433EAC30-1CEA-11DF-8A39-0800200C9A66}.Static Release|x64.ActiveCfg = Release|x64
{5D79B660-0667-11DF-8A39-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32
{5D79B660-0667-11DF-8A39-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64
{5D79B660-0667-11DF-8A39-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32

View file

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<BDB_VERSION>53</BDB_VERSION>
</PropertyGroup>
<PropertyGroup>
<OutDir>..\..\build_windows\$(Platform)\$(Configuration)\</OutDir>
<IntDir>./$(OutDir)$(ProjectName)\</IntDir>
<LinkIncremental>false</LinkIncremental>
<TargetExt>.exe</TargetExt>
<TargetName>$(ProjectName)</TargetName>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<MinimalRebuild>true</MinimalRebuild>
<AdditionalIncludeDirectories>../../build_windows;../../src;../../src/dbinc;../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<StringPooling>true</StringPooling>
<PrecompiledHeader>
</PrecompiledHeader>
<PrecompiledHeaderOutputFile>./$(OutDir)$(ProjectName).pch</PrecompiledHeaderOutputFile>
<AssemblerListingLocation>$(OutDir)$(ProjectName)/</AssemblerListingLocation>
<ObjectFileName>$(OutDir)$(ProjectName)/</ObjectFileName>
<WarningLevel>Level3</WarningLevel>
<SuppressStartupBanner>true</SuppressStartupBanner>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>Default</CompileAs>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;WIN32;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions);</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
</ClCompile>
<Link>
<AdditionalOptions>/machine:x86 /FIXED:NO %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>libdb$(BDB_VERSION)d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<ImportLibrary>$(OutDir)lib$(ProjectName)$(BDB_VERSION)d.lib</ImportLibrary>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<Optimization>MaxSpeed</Optimization>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions);</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
</ClCompile>
<Link>
<AdditionalOptions>/machine:x86 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>libdb$(BDB_VERSION).lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<ImportLibrary>$(OutDir)lib$(ProjectName)$(BDB_VERSION).lib</ImportLibrary>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;WIN32;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions);</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
</ClCompile>
<Link>
<AdditionalOptions>/machine:x64 /FIXED:NO %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>libdb$(BDB_VERSION)d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<ImportLibrary>$(OutDir)lib$(ProjectName)$(BDB_VERSION)d.lib</ImportLibrary>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<Optimization>MaxSpeed</Optimization>
<InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
<PreprocessorDefinitions>NDEBUG;WIN32;_WINDOWS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;%(PreprocessorDefinitions);</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
</ClCompile>
<Link>
<AdditionalOptions>/machine:x64 %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>libdb$(BDB_VERSION).lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);../../lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
<ProgramDatabaseFile>$(OutDir)$(ProjectName).pdb</ProgramDatabaseFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<SuppressStartupBanner>true</SuppressStartupBanner>
<ImportLibrary>$(OutDir)lib$(ProjectName)$(BDB_VERSION).lib</ImportLibrary>
<OptimizeReferences>true</OptimizeReferences>
<TargetMachine>NotSet</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<BuildMacro Include="BDB_VERSION">
<Value>$(BDB_VERSION)</Value>
<EnvironmentVariable>true</EnvironmentVariable>
</BuildMacro>
</ItemGroup>
</Project>

View file

@ -0,0 +1,443 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|Win32">
<Configuration>Static Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|x64">
<Configuration>Static Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|Win32">
<Configuration>Static Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|x64">
<Configuration>Static Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{FD045D60-ABAD-4A6C-9794-9BFB085FC3E7}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
</ImportGroup>
<ImportGroup>
<Import Project="library.props"/>
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;CONFIG_TEST;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalOptions>/FIXED:NO /export:__db_assert %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;CONFIG_TEST;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalOptions>/FIXED:NO /export:__db_assert %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Condition="exists('..\..\src\crypto\aes_method.c')" Include="..\..\src\crypto\aes_method.c"/>
<ClCompile Include="..\..\src\btree\bt_compact.c"/>
<ClCompile Include="..\..\src\btree\bt_compare.c"/>
<ClCompile Include="..\..\src\btree\bt_compress.c"/>
<ClCompile Include="..\..\src\btree\bt_conv.c"/>
<ClCompile Include="..\..\src\btree\bt_curadj.c"/>
<ClCompile Include="..\..\src\btree\bt_cursor.c"/>
<ClCompile Include="..\..\src\btree\bt_delete.c"/>
<ClCompile Include="..\..\src\btree\bt_method.c"/>
<ClCompile Include="..\..\src\btree\bt_open.c"/>
<ClCompile Include="..\..\src\btree\bt_put.c"/>
<ClCompile Include="..\..\src\btree\bt_rec.c"/>
<ClCompile Include="..\..\src\btree\bt_reclaim.c"/>
<ClCompile Include="..\..\src\btree\bt_recno.c"/>
<ClCompile Include="..\..\src\btree\bt_rsearch.c"/>
<ClCompile Include="..\..\src\btree\bt_search.c"/>
<ClCompile Include="..\..\src\btree\bt_split.c"/>
<ClCompile Include="..\..\src\btree\bt_stat.c"/>
<ClCompile Include="..\..\src\btree\bt_upgrade.c"/>
<ClCompile Include="..\..\src\btree\bt_verify.c"/>
<ClCompile Include="..\..\src\btree\btree_auto.c"/>
<ClCompile Include="..\..\src\db\crdel_auto.c"/>
<ClCompile Include="..\..\src\db\crdel_rec.c"/>
<ClCompile Condition="exists('..\..\src\crypto\crypto.c')" Include="..\..\src\crypto\crypto.c"/>
<ClCompile Include="..\..\lang\cxx\cxx_channel.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_db.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_dbc.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_dbt.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_env.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_except.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_lock.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_logc.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_mpool.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_multi.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_seq.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_site.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_txn.cpp"/>
<ClCompile Include="..\..\src\db\db.c"/>
<ClCompile Include="..\..\src\db\db_am.c"/>
<ClCompile Include="..\..\src\db\db_auto.c"/>
<ClCompile Include="..\..\src\common\clock.c"/>
<ClCompile Include="..\..\src\db\db_backup.c"/>
<ClCompile Include="..\..\src\common\db_byteorder.c"/>
<ClCompile Include="..\..\src\db\db_cam.c"/>
<ClCompile Include="..\..\src\db\db_cds.c"/>
<ClCompile Include="..\..\src\db\db_compact.c"/>
<ClCompile Include="..\..\src\db\db_conv.c"/>
<ClCompile Include="..\..\src\db\db_copy.c"/>
<ClCompile Include="..\..\src\db\db_dispatch.c"/>
<ClCompile Include="..\..\src\db\db_dup.c"/>
<ClCompile Include="..\..\src\common\db_err.c"/>
<ClCompile Include="..\..\src\common\db_getlong.c"/>
<ClCompile Include="..\..\src\common\db_idspace.c"/>
<ClCompile Include="..\..\src\common\db_compint.c"/>
<ClCompile Include="..\..\src\db\db_iface.c"/>
<ClCompile Include="..\..\src\db\db_join.c"/>
<ClCompile Include="..\..\src\common\db_log2.c"/>
<ClCompile Include="..\..\src\db\db_meta.c"/>
<ClCompile Include="..\..\src\db\db_method.c"/>
<ClCompile Include="..\..\src\db\db_open.c"/>
<ClCompile Include="..\..\src\db\db_overflow.c"/>
<ClCompile Include="..\..\src\db\db_ovfl_vrfy.c"/>
<ClCompile Include="..\..\src\db\db_pr.c"/>
<ClCompile Include="..\..\src\db\db_rec.c"/>
<ClCompile Include="..\..\src\db\db_reclaim.c"/>
<ClCompile Include="..\..\src\db\db_remove.c"/>
<ClCompile Include="..\..\src\db\db_rename.c"/>
<ClCompile Include="..\..\src\db\db_ret.c"/>
<ClCompile Include="..\..\src\db\db_setid.c"/>
<ClCompile Include="..\..\src\db\db_setlsn.c"/>
<ClCompile Include="..\..\src\common\db_shash.c"/>
<ClCompile Include="..\..\src\db\db_sort_multiple.c"/>
<ClCompile Include="..\..\src\db\db_stati.c"/>
<ClCompile Include="..\..\src\db\db_truncate.c"/>
<ClCompile Include="..\..\src\db\db_upg.c"/>
<ClCompile Include="..\..\src\db\db_upg_opd.c"/>
<ClCompile Include="..\..\src\db\db_vrfy.c"/>
<ClCompile Include="..\..\src\db\db_vrfyutil.c"/>
<ClCompile Include="..\..\src\db\partition.c"/>
<ClCompile Include="..\..\lang\dbm\dbm.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_auto.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_rec.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_stat.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_util.c"/>
<ClCompile Include="..\..\src\common\dbt.c"/>
<ClCompile Include="..\..\src\env\env_alloc.c"/>
<ClCompile Include="..\..\src\env\env_backup.c"/>
<ClCompile Include="..\..\src\env\env_config.c"/>
<ClCompile Include="..\..\src\env\env_failchk.c"/>
<ClCompile Include="..\..\src\env\env_file.c"/>
<ClCompile Include="..\..\src\env\env_globals.c"/>
<ClCompile Include="..\..\src\env\env_method.c"/>
<ClCompile Include="..\..\src\env\env_name.c"/>
<ClCompile Include="..\..\src\env\env_open.c"/>
<ClCompile Include="..\..\src\env\env_recover.c"/>
<ClCompile Include="..\..\src\env\env_region.c"/>
<ClCompile Include="..\..\src\env\env_register.c"/>
<ClCompile Include="..\..\src\env\env_sig.c"/>
<ClCompile Include="..\..\src\env\env_stat.c"/>
<ClCompile Include="..\..\src\fileops\fileops_auto.c"/>
<ClCompile Include="..\..\src\fileops\fop_basic.c"/>
<ClCompile Include="..\..\src\fileops\fop_rec.c"/>
<ClCompile Include="..\..\src\fileops\fop_util.c"/>
<ClCompile Include="..\..\src\hash\hash.c"/>
<ClCompile Include="..\..\src\hash\hash_auto.c"/>
<ClCompile Include="..\..\src\hash\hash_compact.c"/>
<ClCompile Include="..\..\src\hash\hash_conv.c"/>
<ClCompile Include="..\..\src\hash\hash_dup.c"/>
<ClCompile Include="..\..\src\hash\hash_func.c"/>
<ClCompile Include="..\..\src\hash\hash_meta.c"/>
<ClCompile Include="..\..\src\hash\hash_method.c"/>
<ClCompile Include="..\..\src\hash\hash_open.c"/>
<ClCompile Include="..\..\src\hash\hash_page.c"/>
<ClCompile Include="..\..\src\hash\hash_rec.c"/>
<ClCompile Include="..\..\src\hash\hash_reclaim.c"/>
<ClCompile Include="..\..\src\hash\hash_stat.c"/>
<ClCompile Include="..\..\src\hash\hash_upgrade.c"/>
<ClCompile Include="..\..\src\hash\hash_verify.c"/>
<ClCompile Include="..\..\src\heap\heap.c"/>
<ClCompile Include="..\..\src\heap\heap_auto.c"/>
<ClCompile Include="..\..\src\heap\heap_autop.c"/>
<ClCompile Include="..\..\src\heap\heap_backup.c"/>
<ClCompile Include="..\..\src\heap\heap_conv.c"/>
<ClCompile Include="..\..\src\heap\heap_method.c"/>
<ClCompile Include="..\..\src\heap\heap_open.c"/>
<ClCompile Include="..\..\src\heap\heap_rec.c"/>
<ClCompile Include="..\..\src\heap\heap_reclaim.c"/>
<ClCompile Include="..\..\src\heap\heap_stat.c"/>
<ClCompile Include="..\..\src\heap\heap_verify.c"/>
<ClCompile Include="..\..\src\hmac\hmac.c"/>
<ClCompile Include="..\..\lang\hsearch\hsearch.c"/>
<ClCompile Include="..\..\src\clib\isalpha.c"/>
<ClCompile Include="..\..\src\lock\lock.c"/>
<ClCompile Include="..\..\src\lock\lock_deadlock.c"/>
<ClCompile Include="..\..\src\lock\lock_failchk.c"/>
<ClCompile Include="..\..\src\lock\lock_id.c"/>
<ClCompile Include="..\..\src\lock\lock_list.c"/>
<ClCompile Include="..\..\src\lock\lock_method.c"/>
<ClCompile Include="..\..\src\lock\lock_region.c"/>
<ClCompile Include="..\..\src\lock\lock_stat.c"/>
<ClCompile Include="..\..\src\lock\lock_timer.c"/>
<ClCompile Include="..\..\src\lock\lock_util.c"/>
<ClCompile Include="..\..\src\log\log.c"/>
<ClCompile Include="..\..\src\log\log_archive.c"/>
<ClCompile Include="..\..\src\log\log_compare.c"/>
<ClCompile Include="..\..\src\log\log_debug.c"/>
<ClCompile Include="..\..\src\log\log_get.c"/>
<ClCompile Include="..\..\src\log\log_method.c"/>
<ClCompile Include="..\..\src\log\log_print.c"/>
<ClCompile Include="..\..\src\log\log_put.c"/>
<ClCompile Include="..\..\src\log\log_stat.c"/>
<ClCompile Include="..\..\src\log\log_verify.c"/>
<ClCompile Include="..\..\src\log\log_verify_util.c"/>
<ClCompile Include="..\..\src\log\log_verify_auto.c"/>
<ClCompile Include="..\..\src\log\log_verify_int.c"/>
<ClCompile Include="..\..\src\common\mkpath.c"/>
<ClCompile Include="..\..\src\mp\mp_alloc.c"/>
<ClCompile Include="..\..\src\mp\mp_backup.c"/>
<ClCompile Include="..\..\src\mp\mp_bh.c"/>
<ClCompile Include="..\..\src\mp\mp_fget.c"/>
<ClCompile Include="..\..\src\mp\mp_fmethod.c"/>
<ClCompile Include="..\..\src\mp\mp_fopen.c"/>
<ClCompile Include="..\..\src\mp\mp_fput.c"/>
<ClCompile Include="..\..\src\mp\mp_fset.c"/>
<ClCompile Include="..\..\src\mp\mp_method.c"/>
<ClCompile Include="..\..\src\mp\mp_mvcc.c"/>
<ClCompile Include="..\..\src\mp\mp_region.c"/>
<ClCompile Include="..\..\src\mp\mp_register.c"/>
<ClCompile Include="..\..\src\mp\mp_resize.c"/>
<ClCompile Include="..\..\src\mp\mp_stat.c"/>
<ClCompile Include="..\..\src\mp\mp_sync.c"/>
<ClCompile Include="..\..\src\mp\mp_trickle.c"/>
<ClCompile Include="..\..\src\crypto\mersenne\mt19937db.c"/>
<ClCompile Include="..\..\src\mutex\mut_alloc.c"/>
<ClCompile Include="..\..\src\mutex\mut_failchk.c"/>
<ClCompile Include="..\..\src\mutex\mut_method.c"/>
<ClCompile Include="..\..\src\mutex\mut_region.c"/>
<ClCompile Include="..\..\src\mutex\mut_stat.c"/>
<ClCompile Include="..\..\src\mutex\mut_win32.c"/>
<ClCompile Include="..\..\src\common\openflags.c"/>
<ClCompile Include="..\..\src\os\os_abort.c"/>
<ClCompile Include="..\..\src\os\os_addrinfo.c"/>
<ClCompile Include="..\..\src\os_windows\os_abs.c"/>
<ClCompile Include="..\..\src\os\os_alloc.c"/>
<ClCompile Include="..\..\src\os_windows\os_clock.c"/>
<ClCompile Include="..\..\src\os_windows\os_config.c"/>
<ClCompile Include="..\..\src\os_windows\os_cpu.c"/>
<ClCompile Include="..\..\src\os\os_ctime.c"/>
<ClCompile Include="..\..\src\os_windows\os_dir.c"/>
<ClCompile Include="..\..\src\os_windows\os_errno.c"/>
<ClCompile Include="..\..\src\os_windows\os_fid.c"/>
<ClCompile Include="..\..\src\os_windows\os_flock.c"/>
<ClCompile Include="..\..\src\os_windows\os_fsync.c"/>
<ClCompile Include="..\..\src\os_windows\os_getenv.c"/>
<ClCompile Include="..\..\src\os_windows\os_handle.c"/>
<ClCompile Include="..\..\src\os_windows\os_map.c"/>
<ClCompile Include="..\..\src\os_windows\os_mkdir.c"/>
<ClCompile Include="..\..\src\os_windows\os_open.c"/>
<ClCompile Include="..\..\src\os\os_path.c"/>
<ClCompile Include="..\..\src\os\os_pid.c"/>
<ClCompile Include="..\..\src\os_windows\os_rename.c"/>
<ClCompile Include="..\..\src\os\os_root.c"/>
<ClCompile Include="..\..\src\os\os_rpath.c"/>
<ClCompile Include="..\..\src\os_windows\os_rw.c"/>
<ClCompile Include="..\..\src\os_windows\os_seek.c"/>
<ClCompile Include="..\..\src\os\os_stack.c"/>
<ClCompile Include="..\..\src\os_windows\os_stat.c"/>
<ClCompile Include="..\..\src\os\os_tmpdir.c"/>
<ClCompile Include="..\..\src\os_windows\os_truncate.c"/>
<ClCompile Include="..\..\src\os\os_uid.c"/>
<ClCompile Include="..\..\src\os_windows\os_unlink.c"/>
<ClCompile Include="..\..\src\os_windows\os_yield.c"/>
<ClCompile Include="..\..\src\qam\qam.c"/>
<ClCompile Include="..\..\src\qam\qam_auto.c"/>
<ClCompile Include="..\..\src\qam\qam_conv.c"/>
<ClCompile Include="..\..\src\qam\qam_files.c"/>
<ClCompile Include="..\..\src\qam\qam_method.c"/>
<ClCompile Include="..\..\src\qam\qam_open.c"/>
<ClCompile Include="..\..\src\qam\qam_rec.c"/>
<ClCompile Include="..\..\src\qam\qam_stat.c"/>
<ClCompile Include="..\..\src\qam\qam_upgrade.c"/>
<ClCompile Include="..\..\src\qam\qam_verify.c"/>
<ClCompile Include="..\..\src\rep\rep_automsg.c"/>
<ClCompile Include="..\..\src\rep\rep_backup.c"/>
<ClCompile Include="..\..\src\rep\rep_elect.c"/>
<ClCompile Include="..\..\src\rep\rep_lease.c"/>
<ClCompile Include="..\..\src\rep\rep_log.c"/>
<ClCompile Include="..\..\src\rep\rep_method.c"/>
<ClCompile Include="..\..\src\rep\rep_record.c"/>
<ClCompile Include="..\..\src\rep\rep_region.c"/>
<ClCompile Include="..\..\src\rep\rep_stat.c"/>
<ClCompile Include="..\..\src\rep\rep_util.c"/>
<ClCompile Include="..\..\src\rep\rep_verify.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_auto.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_automsg.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_elect.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_method.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_msg.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_net.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_queue.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_rec.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_sel.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_stat.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_util.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_windows.c"/>
<ClCompile Include="..\..\src\crypto\rijndael\rijndael-alg-fst.c"/>
<ClCompile Include="..\..\src\crypto\rijndael\rijndael-api-fst.c"/>
<ClCompile Include="..\..\src\sequence\seq_stat.c"/>
<ClCompile Include="..\..\src\sequence\sequence.c"/>
<ClCompile Include="..\..\src\hmac\sha1.c"/>
<ClCompile Include="..\..\src\clib\strsep.c"/>
<ClCompile Include="..\..\src\txn\txn.c"/>
<ClCompile Include="..\..\src\txn\txn_auto.c"/>
<ClCompile Include="..\..\src\txn\txn_chkpt.c"/>
<ClCompile Include="..\..\src\txn\txn_failchk.c"/>
<ClCompile Include="..\..\src\txn\txn_method.c"/>
<ClCompile Include="..\..\src\txn\txn_rec.c"/>
<ClCompile Include="..\..\src\txn\txn_recover.c"/>
<ClCompile Include="..\..\src\txn\txn_region.c"/>
<ClCompile Include="..\..\src\txn\txn_stat.c"/>
<ClCompile Include="..\..\src\txn\txn_util.c"/>
<ClCompile Include="..\..\src\common\os_method.c"/>
<ClCompile Include="..\..\src\common\util_cache.c"/>
<ClCompile Include="..\..\src\common\util_log.c"/>
<ClCompile Include="..\..\src\common\util_sig.c"/>
<ClCompile Include="..\..\src\common\zerofill.c"/>
<ClCompile Include="..\..\src\xa\xa.c"/>
<ClCompile Include="..\..\src\xa\xa_map.c"/>
</ItemGroup>
<ItemGroup>
<None Include="../libdb.def"/>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="../libdb.rc">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">_DEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'">NDEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NDEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'">NDEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">_DEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'">NDEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">NDEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'">NDEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ResourceCompile>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ItemGroup>
</ItemGroup>
</Project>

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_archive.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_archive.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_checkpoint.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_checkpoint.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -60,7 +60,7 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@ -68,7 +68,7 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@ -76,7 +76,7 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@ -84,11 +84,11 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\lang\csharp\libdb_csharp\db_csharp_wrap.c"/>
<ClCompile Include="..\..\lang\csharp\libdb_csharp\db_csharp_wrap.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_deadlock.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_deadlock.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_dump.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_dump.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_hotbackup.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_hotbackup.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -0,0 +1,162 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{0052E828-5F10-4973-8729-50B0C5598702}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
</ImportGroup>
<ImportGroup>
<Import Project="library.props"/>
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<CustomBuildStep>
<Command>
echo compiling Berkeley DB Java classes
mkdir "./$(OutDir)/classes/"
javac -g -target 1.5 -d "$(OutDir)\classes" -classpath "$(OutDir)\classes" ..\..\lang\java\src\com\sleepycat\db\*.java ..\..\lang\java\src\com\sleepycat\db\internal\*.java ..\..\lang\java\src\com\sleepycat\asm\*.java ..\..\lang\java\src\com\sleepycat\bind\*.java ..\..\lang\java\src\com\sleepycat\bind\serial\*.java ..\..\lang\java\src\com\sleepycat\bind\tuple\*.java ..\..\lang\java\src\com\sleepycat\collections\*.java ..\..\lang\java\src\com\sleepycat\compat\*.java ..\..\lang\java\src\com\sleepycat\persist\*.java ..\..\lang\java\src\com\sleepycat\persist\evolve\*.java ..\..\lang\java\src\com\sleepycat\persist\impl\*.java ..\..\lang\java\src\com\sleepycat\persist\model\*.java ..\..\lang\java\src\com\sleepycat\persist\raw\*.java ..\..\lang\java\src\com\sleepycat\util\*.java ..\..\lang\java\src\com\sleepycat\util\keyrange\*.java
java -classpath $(OutDir)\classes com.sleepycat.persist.model.ClassEnhancer $(OutDir)\classes
echo compiling examples
mkdir "$(OutDir)\classes.ex"
javac -g -target 1.5 -d "$(OutDir)\classes.ex" -classpath "$(OutDir)\classes;$(OutDir)\classes.ex" ..\..\examples/java\src\db\*.java ..\..\examples/java\src\db\GettingStarted\*.java ..\..\examples/java\src\db\repquote\*.java ..\..\examples/java\src\db\repquote_gsg\*.java ..\..\examples/java\src\db\txn\*.java ..\..\examples/java\src\collections\access\*.java ..\..\examples/java\src\collections\hello\*.java ..\..\examples/java\src\collections\ship\basic\*.java ..\..\examples/java\src\collections\ship\entity\*.java ..\..\examples/java\src\collections\ship\factory\*.java ..\..\examples/java\src\collections\ship\index\*.java ..\..\examples/java\src\collections\ship\marshal\*.java ..\..\examples/java\src\collections\ship\sentity\*.java ..\..\examples/java\src\collections\ship\tuple\*.java ..\..\examples/java\src\persist\*.java ..\..\examples/java\src\persist\gettingStarted\*.java ..\..\examples/java\src\persist\txn\*.java
echo creating jar files
jar cfm "$(OutDir)/db.jar" ../..\lang/java/jarManifestEntries -C "$(OutDir)\classes" .
jar cf "$(OutDir)/dbexamples.jar" -C "$(OutDir)\classes.ex" .
echo Java build finished</Command>
<Outputs>force_compilation.txt;%(Outputs)</Outputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<CustomBuildStep>
<Command>
echo compiling Berkeley DB Java classes
mkdir "./$(OutDir)/classes/"
javac -g -target 1.5 -d "$(OutDir)\classes" -classpath "$(OutDir)\classes" ..\..\lang\java\src\com\sleepycat\db\*.java ..\..\lang\java\src\com\sleepycat\db\internal\*.java ..\..\lang\java\src\com\sleepycat\asm\*.java ..\..\lang\java\src\com\sleepycat\bind\*.java ..\..\lang\java\src\com\sleepycat\bind\serial\*.java ..\..\lang\java\src\com\sleepycat\bind\tuple\*.java ..\..\lang\java\src\com\sleepycat\collections\*.java ..\..\lang\java\src\com\sleepycat\compat\*.java ..\..\lang\java\src\com\sleepycat\persist\*.java ..\..\lang\java\src\com\sleepycat\persist\evolve\*.java ..\..\lang\java\src\com\sleepycat\persist\impl\*.java ..\..\lang\java\src\com\sleepycat\persist\model\*.java ..\..\lang\java\src\com\sleepycat\persist\raw\*.java ..\..\lang\java\src\com\sleepycat\util\*.java ..\..\lang\java\src\com\sleepycat\util\keyrange\*.java
java -classpath $(OutDir)\classes com.sleepycat.persist.model.ClassEnhancer $(OutDir)\classes
echo compiling examples
mkdir "$(OutDir)\classes.ex"
javac -g -target 1.5 -d "$(OutDir)\classes.ex" -classpath "$(OutDir)\classes;$(OutDir)\classes.ex" ..\..\examples/java\src\db\*.java ..\..\examples/java\src\db\GettingStarted\*.java ..\..\examples/java\src\db\repquote\*.java ..\..\examples/java\src\db\repquote_gsg\*.java ..\..\examples/java\src\db\txn\*.java ..\..\examples/java\src\collections\access\*.java ..\..\examples/java\src\collections\hello\*.java ..\..\examples/java\src\collections\ship\basic\*.java ..\..\examples/java\src\collections\ship\entity\*.java ..\..\examples/java\src\collections\ship\factory\*.java ..\..\examples/java\src\collections\ship\index\*.java ..\..\examples/java\src\collections\ship\marshal\*.java ..\..\examples/java\src\collections\ship\sentity\*.java ..\..\examples/java\src\collections\ship\tuple\*.java ..\..\examples/java\src\persist\*.java ..\..\examples/java\src\persist\gettingStarted\*.java ..\..\examples/java\src\persist\txn\*.java
echo creating jar files
jar cfm "$(OutDir)/db.jar" ../..\lang/java/jarManifestEntries -C "$(OutDir)\classes" .
jar cf "$(OutDir)/dbexamples.jar" -C "$(OutDir)\classes.ex" .
echo Java build finished</Command>
<Outputs>force_compilation.txt;%(Outputs)</Outputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<CustomBuildStep>
<Command>
echo compiling Berkeley DB Java classes
mkdir "./$(OutDir)/classes/"
javac -g -target 1.5 -d "$(OutDir)\classes" -classpath "$(OutDir)\classes" ..\..\lang\java\src\com\sleepycat\db\*.java ..\..\lang\java\src\com\sleepycat\db\internal\*.java ..\..\lang\java\src\com\sleepycat\asm\*.java ..\..\lang\java\src\com\sleepycat\bind\*.java ..\..\lang\java\src\com\sleepycat\bind\serial\*.java ..\..\lang\java\src\com\sleepycat\bind\tuple\*.java ..\..\lang\java\src\com\sleepycat\collections\*.java ..\..\lang\java\src\com\sleepycat\compat\*.java ..\..\lang\java\src\com\sleepycat\persist\*.java ..\..\lang\java\src\com\sleepycat\persist\evolve\*.java ..\..\lang\java\src\com\sleepycat\persist\impl\*.java ..\..\lang\java\src\com\sleepycat\persist\model\*.java ..\..\lang\java\src\com\sleepycat\persist\raw\*.java ..\..\lang\java\src\com\sleepycat\util\*.java ..\..\lang\java\src\com\sleepycat\util\keyrange\*.java
java -classpath $(OutDir)\classes com.sleepycat.persist.model.ClassEnhancer $(OutDir)\classes
echo compiling examples
mkdir "$(OutDir)\classes.ex"
javac -g -target 1.5 -d "$(OutDir)\classes.ex" -classpath "$(OutDir)\classes;$(OutDir)\classes.ex" ..\..\examples/java\src\db\*.java ..\..\examples/java\src\db\GettingStarted\*.java ..\..\examples/java\src\db\repquote\*.java ..\..\examples/java\src\db\repquote_gsg\*.java ..\..\examples/java\src\db\txn\*.java ..\..\examples/java\src\collections\access\*.java ..\..\examples/java\src\collections\hello\*.java ..\..\examples/java\src\collections\ship\basic\*.java ..\..\examples/java\src\collections\ship\entity\*.java ..\..\examples/java\src\collections\ship\factory\*.java ..\..\examples/java\src\collections\ship\index\*.java ..\..\examples/java\src\collections\ship\marshal\*.java ..\..\examples/java\src\collections\ship\sentity\*.java ..\..\examples/java\src\collections\ship\tuple\*.java ..\..\examples/java\src\persist\*.java ..\..\examples/java\src\persist\gettingStarted\*.java ..\..\examples/java\src\persist\txn\*.java
echo creating jar files
jar cfm "$(OutDir)/db.jar" ../..\lang/java/jarManifestEntries -C "$(OutDir)\classes" .
jar cf "$(OutDir)/dbexamples.jar" -C "$(OutDir)\classes.ex" .
echo Java build finished</Command>
<Outputs>force_compilation.txt;%(Outputs)</Outputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<CustomBuildStep>
<Command>
echo compiling Berkeley DB Java classes
mkdir "./$(OutDir)/classes/"
javac -g -target 1.5 -d "$(OutDir)\classes" -classpath "$(OutDir)\classes" ..\..\lang\java\src\com\sleepycat\db\*.java ..\..\lang\java\src\com\sleepycat\db\internal\*.java ..\..\lang\java\src\com\sleepycat\asm\*.java ..\..\lang\java\src\com\sleepycat\bind\*.java ..\..\lang\java\src\com\sleepycat\bind\serial\*.java ..\..\lang\java\src\com\sleepycat\bind\tuple\*.java ..\..\lang\java\src\com\sleepycat\collections\*.java ..\..\lang\java\src\com\sleepycat\compat\*.java ..\..\lang\java\src\com\sleepycat\persist\*.java ..\..\lang\java\src\com\sleepycat\persist\evolve\*.java ..\..\lang\java\src\com\sleepycat\persist\impl\*.java ..\..\lang\java\src\com\sleepycat\persist\model\*.java ..\..\lang\java\src\com\sleepycat\persist\raw\*.java ..\..\lang\java\src\com\sleepycat\util\*.java ..\..\lang\java\src\com\sleepycat\util\keyrange\*.java
java -classpath $(OutDir)\classes com.sleepycat.persist.model.ClassEnhancer $(OutDir)\classes
echo compiling examples
mkdir "$(OutDir)\classes.ex"
javac -g -target 1.5 -d "$(OutDir)\classes.ex" -classpath "$(OutDir)\classes;$(OutDir)\classes.ex" ..\..\examples/java\src\db\*.java ..\..\examples/java\src\db\GettingStarted\*.java ..\..\examples/java\src\db\repquote\*.java ..\..\examples/java\src\db\repquote_gsg\*.java ..\..\examples/java\src\db\txn\*.java ..\..\examples/java\src\collections\access\*.java ..\..\examples/java\src\collections\hello\*.java ..\..\examples/java\src\collections\ship\basic\*.java ..\..\examples/java\src\collections\ship\entity\*.java ..\..\examples/java\src\collections\ship\factory\*.java ..\..\examples/java\src\collections\ship\index\*.java ..\..\examples/java\src\collections\ship\marshal\*.java ..\..\examples/java\src\collections\ship\sentity\*.java ..\..\examples/java\src\collections\ship\tuple\*.java ..\..\examples/java\src\persist\*.java ..\..\examples/java\src\persist\gettingStarted\*.java ..\..\examples/java\src\persist\txn\*.java
echo creating jar files
jar cfm "$(OutDir)/db.jar" ../..\lang/java/jarManifestEntries -C "$(OutDir)\classes" .
jar cf "$(OutDir)/dbexamples.jar" -C "$(OutDir)\classes.ex" .
echo Java build finished</Command>
<Outputs>force_compilation.txt;%(Outputs)</Outputs>
</CustomBuildStep>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\lang\java\libdb_java\db_java_wrap.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ItemGroup>
<ProjectReference Condition="exists('db.vcxproj')" Include="db.vcxproj">
<Project>{fd045d60-abad-4a6c-9794-9bfb085fc3e7}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_load.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_load.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_log_verify.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_log_verify.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,27 +56,27 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\test\perf\db_perf.c"/>
<ClCompile Include="..\test\perf\perf_checkpoint.c"/>
<ClCompile Include="..\test\perf\perf_config.c"/>
<ClCompile Include="..\test\perf\perf_dbs.c"/>
<ClCompile Include="..\test\perf\perf_dead.c"/>
<ClCompile Include="..\test\perf\perf_debug.c"/>
<ClCompile Include="..\test\perf\perf_file.c"/>
<ClCompile Include="..\test\perf\perf_key.c"/>
<ClCompile Include="..\test\perf\perf_log.c"/>
<ClCompile Include="..\test\perf\perf_misc.c"/>
<ClCompile Include="..\test\perf\perf_op.c"/>
<ClCompile Include="..\test\perf\perf_parse.c"/>
<ClCompile Include="..\test\perf\perf_rand.c"/>
<ClCompile Include="..\test\perf\perf_spawn.c"/>
<ClCompile Include="..\test\perf\perf_stat.c"/>
<ClCompile Include="..\test\perf\perf_sync.c"/>
<ClCompile Include="..\test\perf\perf_thread.c"/>
<ClCompile Include="..\test\perf\perf_trickle.c"/>
<ClCompile Include="..\test\perf\perf_txn.c"/>
<ClCompile Include="..\test\perf\perf_util.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\test\perf\db_perf.c"/>
<ClCompile Include="..\..\test\perf\perf_checkpoint.c"/>
<ClCompile Include="..\..\test\perf\perf_config.c"/>
<ClCompile Include="..\..\test\perf\perf_dbs.c"/>
<ClCompile Include="..\..\test\perf\perf_dead.c"/>
<ClCompile Include="..\..\test\perf\perf_debug.c"/>
<ClCompile Include="..\..\test\perf\perf_file.c"/>
<ClCompile Include="..\..\test\perf\perf_key.c"/>
<ClCompile Include="..\..\test\perf\perf_log.c"/>
<ClCompile Include="..\..\test\perf\perf_misc.c"/>
<ClCompile Include="..\..\test\perf\perf_op.c"/>
<ClCompile Include="..\..\test\perf\perf_parse.c"/>
<ClCompile Include="..\..\test\perf\perf_rand.c"/>
<ClCompile Include="..\..\test\perf\perf_spawn.c"/>
<ClCompile Include="..\..\test\perf\perf_stat.c"/>
<ClCompile Include="..\..\test\perf\perf_sync.c"/>
<ClCompile Include="..\..\test\perf\perf_thread.c"/>
<ClCompile Include="..\..\test\perf\perf_trickle.c"/>
<ClCompile Include="..\..\test\perf\perf_txn.c"/>
<ClCompile Include="..\..\test\perf\perf_util.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,17 +56,17 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_printlog.c"/>
<ClCompile Include="..\src\btree\btree_autop.c"/>
<ClCompile Include="..\src\db\crdel_autop.c"/>
<ClCompile Include="..\src\db\db_autop.c"/>
<ClCompile Include="..\src\dbreg\dbreg_autop.c"/>
<ClCompile Include="..\src\fileops\fileops_autop.c"/>
<ClCompile Include="..\src\hash\hash_autop.c"/>
<ClCompile Include="..\src\qam\qam_autop.c"/>
<ClCompile Include="..\src\repmgr\repmgr_autop.c"/>
<ClCompile Include="..\src\txn\txn_autop.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_printlog.c"/>
<ClCompile Include="..\..\src\btree\btree_autop.c"/>
<ClCompile Include="..\..\src\db\crdel_autop.c"/>
<ClCompile Include="..\..\src\db\db_autop.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_autop.c"/>
<ClCompile Include="..\..\src\fileops\fileops_autop.c"/>
<ClCompile Include="..\..\src\hash\hash_autop.c"/>
<ClCompile Include="..\..\src\qam\qam_autop.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_autop.c"/>
<ClCompile Include="..\..\src\txn\txn_autop.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_recover.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_recover.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_replicate.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_replicate.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\test\repmgr\db_repsite.cpp"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\test\repmgr\db_repsite.cpp"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -0,0 +1,358 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Static Debug|Win32">
<Configuration>Static Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|x64">
<Configuration>Static Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|Win32">
<Configuration>Static Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|x64">
<Configuration>Static Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{B7124116-7A43-4BF1-B727-4C8ADE40FF7F}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
</ImportGroup>
<ImportGroup>
<Import Project="library.props"/>
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalOptions>/FIXED:NO /export:__db_assert %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_small.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_small.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalOptions>/FIXED:NO /export:__db_assert %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_small.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PreprocessorDefinitions>_UNICODE;UNICODE;HAVE_SMALLBUILD;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_small.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\src\btree\bt_compact.c"/>
<ClCompile Include="..\..\src\btree\bt_compare.c"/>
<ClCompile Include="..\..\src\btree\bt_conv.c"/>
<ClCompile Include="..\..\src\btree\bt_curadj.c"/>
<ClCompile Include="..\..\src\btree\bt_cursor.c"/>
<ClCompile Include="..\..\src\btree\bt_delete.c"/>
<ClCompile Include="..\..\src\btree\bt_method.c"/>
<ClCompile Include="..\..\src\btree\bt_open.c"/>
<ClCompile Include="..\..\src\btree\bt_put.c"/>
<ClCompile Include="..\..\src\btree\bt_rec.c"/>
<ClCompile Include="..\..\src\btree\bt_reclaim.c"/>
<ClCompile Include="..\..\src\btree\bt_recno.c"/>
<ClCompile Include="..\..\src\btree\bt_rsearch.c"/>
<ClCompile Include="..\..\src\btree\bt_search.c"/>
<ClCompile Include="..\..\src\btree\bt_split.c"/>
<ClCompile Include="..\..\src\btree\bt_stat.c"/>
<ClCompile Include="..\..\src\btree\bt_upgrade.c"/>
<ClCompile Include="..\..\src\btree\btree_auto.c"/>
<ClCompile Include="..\..\src\clib\isalpha.c"/>
<ClCompile Include="..\..\src\clib\strsep.c"/>
<ClCompile Include="..\..\src\common\clock.c"/>
<ClCompile Include="..\..\src\common\crypto_stub.c"/>
<ClCompile Include="..\..\src\common\db_byteorder.c"/>
<ClCompile Include="..\..\src\common\db_err.c"/>
<ClCompile Include="..\..\src\common\db_getlong.c"/>
<ClCompile Include="..\..\src\common\db_idspace.c"/>
<ClCompile Include="..\..\src\common\db_log2.c"/>
<ClCompile Include="..\..\src\common\db_shash.c"/>
<ClCompile Include="..\..\src\common\dbt.c"/>
<ClCompile Include="..\..\src\common\mkpath.c"/>
<ClCompile Include="..\..\src\common\os_method.c"/>
<ClCompile Include="..\..\src\common\util_cache.c"/>
<ClCompile Include="..\..\src\common\util_log.c"/>
<ClCompile Include="..\..\src\common\util_sig.c"/>
<ClCompile Include="..\..\src\common\zerofill.c"/>
<ClCompile Include="..\..\lang\cxx\cxx_channel.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_db.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_dbc.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_dbt.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_env.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_except.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_lock.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_logc.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_mpool.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_multi.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_seq.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_site.cpp"/>
<ClCompile Include="..\..\lang\cxx\cxx_txn.cpp"/>
<ClCompile Include="..\..\src\db\crdel_auto.c"/>
<ClCompile Include="..\..\src\db\crdel_rec.c"/>
<ClCompile Include="..\..\src\db\db.c"/>
<ClCompile Include="..\..\src\db\db_am.c"/>
<ClCompile Include="..\..\src\db\db_auto.c"/>
<ClCompile Include="..\..\src\db\db_backup.c"/>
<ClCompile Include="..\..\src\db\db_cam.c"/>
<ClCompile Include="..\..\src\db\db_cds.c"/>
<ClCompile Include="..\..\src\db\db_compact.c"/>
<ClCompile Include="..\..\src\db\db_conv.c"/>
<ClCompile Include="..\..\src\db\db_copy.c"/>
<ClCompile Include="..\..\src\db\db_dispatch.c"/>
<ClCompile Include="..\..\src\db\db_dup.c"/>
<ClCompile Include="..\..\src\db\db_iface.c"/>
<ClCompile Include="..\..\src\db\db_join.c"/>
<ClCompile Include="..\..\src\db\db_meta.c"/>
<ClCompile Include="..\..\src\db\db_method.c"/>
<ClCompile Include="..\..\src\db\db_open.c"/>
<ClCompile Include="..\..\src\db\db_overflow.c"/>
<ClCompile Include="..\..\src\db\db_pr.c"/>
<ClCompile Include="..\..\src\db\db_rec.c"/>
<ClCompile Include="..\..\src\db\db_reclaim.c"/>
<ClCompile Include="..\..\src\db\db_remove.c"/>
<ClCompile Include="..\..\src\db\db_rename.c"/>
<ClCompile Include="..\..\src\db\db_ret.c"/>
<ClCompile Include="..\..\src\db\db_setid.c"/>
<ClCompile Include="..\..\src\db\db_setlsn.c"/>
<ClCompile Include="..\..\src\db\db_sort_multiple.c"/>
<ClCompile Include="..\..\src\db\db_stati.c"/>
<ClCompile Include="..\..\src\db\db_truncate.c"/>
<ClCompile Include="..\..\src\db\db_upg.c"/>
<ClCompile Include="..\..\src\db\db_upg_opd.c"/>
<ClCompile Include="..\..\src\db\db_vrfy_stub.c"/>
<ClCompile Include="..\..\src\db\partition.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_auto.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_rec.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_stat.c"/>
<ClCompile Include="..\..\src\dbreg\dbreg_util.c"/>
<ClCompile Include="..\..\src\env\env_alloc.c"/>
<ClCompile Include="..\..\src\env\env_backup.c"/>
<ClCompile Include="..\..\src\env\env_config.c"/>
<ClCompile Include="..\..\src\env\env_failchk.c"/>
<ClCompile Include="..\..\src\env\env_file.c"/>
<ClCompile Include="..\..\src\env\env_globals.c"/>
<ClCompile Include="..\..\src\env\env_method.c"/>
<ClCompile Include="..\..\src\env\env_name.c"/>
<ClCompile Include="..\..\src\env\env_open.c"/>
<ClCompile Include="..\..\src\env\env_recover.c"/>
<ClCompile Include="..\..\src\env\env_region.c"/>
<ClCompile Include="..\..\src\env\env_register.c"/>
<ClCompile Include="..\..\src\env\env_sig.c"/>
<ClCompile Include="..\..\src\env\env_stat.c"/>
<ClCompile Include="..\..\src\fileops\fileops_auto.c"/>
<ClCompile Include="..\..\src\fileops\fop_basic.c"/>
<ClCompile Include="..\..\src\fileops\fop_rec.c"/>
<ClCompile Include="..\..\src\fileops\fop_util.c"/>
<ClCompile Include="..\..\src\hash\hash_func.c"/>
<ClCompile Include="..\..\src\hash\hash_stub.c"/>
<ClCompile Include="..\..\src\heap\heap_stub.c"/>
<ClCompile Include="..\..\src\hmac\hmac.c"/>
<ClCompile Include="..\..\src\hmac\sha1.c"/>
<ClCompile Include="..\..\src\lock\lock.c"/>
<ClCompile Include="..\..\src\lock\lock_deadlock.c"/>
<ClCompile Include="..\..\src\lock\lock_failchk.c"/>
<ClCompile Include="..\..\src\lock\lock_id.c"/>
<ClCompile Include="..\..\src\lock\lock_list.c"/>
<ClCompile Include="..\..\src\lock\lock_method.c"/>
<ClCompile Include="..\..\src\lock\lock_region.c"/>
<ClCompile Include="..\..\src\lock\lock_stat.c"/>
<ClCompile Include="..\..\src\lock\lock_timer.c"/>
<ClCompile Include="..\..\src\lock\lock_util.c"/>
<ClCompile Include="..\..\src\log\log.c"/>
<ClCompile Include="..\..\src\log\log_archive.c"/>
<ClCompile Include="..\..\src\log\log_compare.c"/>
<ClCompile Include="..\..\src\log\log_debug.c"/>
<ClCompile Include="..\..\src\log\log_get.c"/>
<ClCompile Include="..\..\src\log\log_method.c"/>
<ClCompile Include="..\..\src\log\log_put.c"/>
<ClCompile Include="..\..\src\log\log_stat.c"/>
<ClCompile Include="..\..\src\log\log_verify_stub.c"/>
<ClCompile Include="..\..\src\mp\mp_alloc.c"/>
<ClCompile Include="..\..\src\mp\mp_backup.c"/>
<ClCompile Include="..\..\src\mp\mp_bh.c"/>
<ClCompile Include="..\..\src\mp\mp_fget.c"/>
<ClCompile Include="..\..\src\mp\mp_fmethod.c"/>
<ClCompile Include="..\..\src\mp\mp_fopen.c"/>
<ClCompile Include="..\..\src\mp\mp_fput.c"/>
<ClCompile Include="..\..\src\mp\mp_fset.c"/>
<ClCompile Include="..\..\src\mp\mp_method.c"/>
<ClCompile Include="..\..\src\mp\mp_mvcc.c"/>
<ClCompile Include="..\..\src\mp\mp_region.c"/>
<ClCompile Include="..\..\src\mp\mp_register.c"/>
<ClCompile Include="..\..\src\mp\mp_resize.c"/>
<ClCompile Include="..\..\src\mp\mp_stat.c"/>
<ClCompile Include="..\..\src\mp\mp_sync.c"/>
<ClCompile Include="..\..\src\mp\mp_trickle.c"/>
<ClCompile Include="..\..\src\mutex\mut_alloc.c"/>
<ClCompile Include="..\..\src\mutex\mut_failchk.c"/>
<ClCompile Include="..\..\src\mutex\mut_method.c"/>
<ClCompile Include="..\..\src\mutex\mut_region.c"/>
<ClCompile Include="..\..\src\mutex\mut_stat.c"/>
<ClCompile Include="..\..\src\mutex\mut_win32.c"/>
<ClCompile Include="..\..\src\os\os_abort.c"/>
<ClCompile Include="..\..\src\os\os_alloc.c"/>
<ClCompile Include="..\..\src\os\os_ctime.c"/>
<ClCompile Include="..\..\src\os\os_pid.c"/>
<ClCompile Include="..\..\src\os\os_root.c"/>
<ClCompile Include="..\..\src\os\os_rpath.c"/>
<ClCompile Include="..\..\src\os\os_stack.c"/>
<ClCompile Include="..\..\src\os\os_tmpdir.c"/>
<ClCompile Include="..\..\src\os\os_uid.c"/>
<ClCompile Include="..\..\src\os_windows\os_abs.c"/>
<ClCompile Include="..\..\src\os_windows\os_clock.c"/>
<ClCompile Include="..\..\src\os_windows\os_config.c"/>
<ClCompile Include="..\..\src\os_windows\os_cpu.c"/>
<ClCompile Include="..\..\src\os_windows\os_dir.c"/>
<ClCompile Include="..\..\src\os_windows\os_errno.c"/>
<ClCompile Include="..\..\src\os_windows\os_fid.c"/>
<ClCompile Include="..\..\src\os_windows\os_flock.c"/>
<ClCompile Include="..\..\src\os_windows\os_fsync.c"/>
<ClCompile Include="..\..\src\os_windows\os_getenv.c"/>
<ClCompile Include="..\..\src\os_windows\os_handle.c"/>
<ClCompile Include="..\..\src\os_windows\os_map.c"/>
<ClCompile Include="..\..\src\os_windows\os_mkdir.c"/>
<ClCompile Include="..\..\src\os_windows\os_open.c"/>
<ClCompile Include="..\..\src\os\os_path.c"/>
<ClCompile Include="..\..\src\os_windows\os_rename.c"/>
<ClCompile Include="..\..\src\os_windows\os_rw.c"/>
<ClCompile Include="..\..\src\os_windows\os_seek.c"/>
<ClCompile Include="..\..\src\os_windows\os_stat.c"/>
<ClCompile Include="..\..\src\os_windows\os_truncate.c"/>
<ClCompile Include="..\..\src\os_windows\os_unlink.c"/>
<ClCompile Include="..\..\src\os_windows\os_yield.c"/>
<ClCompile Include="..\..\src\qam\qam_stub.c"/>
<ClCompile Include="..\..\src\rep\rep_stub.c"/>
<ClCompile Include="..\..\src\repmgr\repmgr_stub.c"/>
<ClCompile Include="..\..\src\sequence\seq_stat.c"/>
<ClCompile Include="..\..\src\sequence\sequence.c"/>
<ClCompile Include="..\..\src\txn\txn.c"/>
<ClCompile Include="..\..\src\txn\txn_auto.c"/>
<ClCompile Include="..\..\src\txn\txn_chkpt.c"/>
<ClCompile Include="..\..\src\txn\txn_failchk.c"/>
<ClCompile Include="..\..\src\txn\txn_method.c"/>
<ClCompile Include="..\..\src\txn\txn_rec.c"/>
<ClCompile Include="..\..\src\txn\txn_recover.c"/>
<ClCompile Include="..\..\src\txn\txn_region.c"/>
<ClCompile Include="..\..\src\txn\txn_stat.c"/>
<ClCompile Include="..\..\src\txn\txn_util.c"/>
<ClCompile Include="..\..\src\xa\xa.c"/>
<ClCompile Include="..\..\src\xa\xa_map.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ItemGroup>
</ItemGroup>
</Project>

View file

@ -0,0 +1,248 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|Win32">
<Configuration>Static Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Debug|x64">
<Configuration>Static Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|Win32">
<Configuration>Static Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Static Release|x64">
<Configuration>Static Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{4B65E600-064A-11DF-8A39-0800200C9A66}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
</ImportGroup>
<ImportGroup>
<Import Project="library.props"/>
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;SQLITE_DEBUG;SQLITE_MEMDEBUG;SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalOptions>/FIXED:NO %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;SQLITE_DEBUG;SQLITE_MEMDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;SQLITE_DEBUG;SQLITE_MEMDEBUG;SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalOptions>/FIXED:NO %(AdditionalOptions)</AdditionalOptions>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;SQLITE_DEBUG;SQLITE_MEMDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;SQLITE_API=__declspec(dllexport);%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;SQLITE_CORE;SQLITE_ENABLE_COLUMN_METADATA;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_LOAD_EXTENSION;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\lang\sql\sqlite\src\alter.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\analyze.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\attach.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\auth.c"/>
<ClCompile Include="..\..\lang\sql\adapter\backup.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\bitvec.c"/>
<ClCompile Include="..\..\lang\sql\adapter\btmutex.c"/>
<ClCompile Include="..\..\lang\sql\adapter\btree.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\build.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\callback.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\complete.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\ctime.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\date.c"/>
<ClCompile Include="..\..\lang\sql\adapter\db_encrypt.c"/>
<ClCompile Include="..\..\lang\sql\adapter\db_pragma.c"/>
<ClCompile Include="..\..\lang\sql\adapter\db_shell.c"/>
<ClCompile Include="..\..\lang\sql\adapter\db_sequence.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\delete.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\expr.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\fault.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\fkey.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_aux.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_expr.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_hash.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_icu.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_porter.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_snippet.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_tokenizer1.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_tokenizer.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_write.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\func.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\global.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\hash.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\insert.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\journal.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\legacy.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\loadext.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\main.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\malloc.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem0.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem1.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem2.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\memjournal.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mutex.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mutex_noop.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mutex_w32.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\notify.c"/>
<ClCompile Include="..\..\lang\sql\generated\opcodes.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\os.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\os_win.c"/>
<ClCompile Include="..\..\lang\sql\adapter\pager.c"/>
<ClCompile Include="..\..\lang\sql\generated\parse.c"/>
<ClCompile Include="..\..\lang\sql\adapter\pcache.c"/>
<ClCompile Include="..\..\lang\sql\adapter\pcache1.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\pragma.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\prepare.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\printf.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\random.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\resolve.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\rowset.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\rtree\rtree.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\select.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\status.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\table.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\tokenize.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\trigger.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\update.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\utf.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\util.c"/>
<ClCompile Include="..\..\lang\sql\adapter\vacuum.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbe.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbeapi.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbeaux.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbeblob.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbemem.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbetrace.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vtab.c"/>
<ClCompile Include="..\..\lang\sql\adapter\wal.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\walker.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\where.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ItemGroup>
<ProjectReference Condition="exists('db.vcxproj')" Include="db.vcxproj">
<Project>{fd045d60-abad-4a6c-9794-9bfb085fc3e7}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>

View file

@ -56,20 +56,20 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_sql_codegen\db_sql_codegen.c"/>
<ClCompile Include="..\util\db_sql_codegen\preparser.c"/>
<ClCompile Include="..\util\db_sql_codegen\parsefuncs.c"/>
<ClCompile Include="..\util\db_sql_codegen\tokenize.c"/>
<ClCompile Include="..\util\db_sql_codegen\buildpt.c"/>
<ClCompile Include="..\util\db_sql_codegen\utils.c"/>
<ClCompile Include="..\util\db_sql_codegen\generate.c"/>
<ClCompile Include="..\util\db_sql_codegen\generate_test.c"/>
<ClCompile Include="..\util\db_sql_codegen\generation_utils.c"/>
<ClCompile Include="..\util\db_sql_codegen\generate_verification.c"/>
<ClCompile Include="..\util\db_sql_codegen\hint_comment.c"/>
<ClCompile Include="..\util\db_sql_codegen\sqlite\sqlprintf.c"/>
<ClCompile Include="..\util\db_sql_codegen\sqlite\parse.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\db_sql_codegen.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\preparser.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\parsefuncs.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\tokenize.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\buildpt.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\utils.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\generate.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\generate_test.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\generation_utils.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\generate_verification.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\hint_comment.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\sqlite\sqlprintf.c"/>
<ClCompile Include="..\..\util\db_sql_codegen\sqlite\parse.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -61,42 +61,90 @@
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;../../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;HAVE_SQLITE3;HAVE_SQLITE3_MALLOC=1;HAVE_SQLITE3_PREPARE_V2=1;HAVE_SQLITE3_PREPARE16_V2=1;HAVE_SQLITE3_BIND_ZEROBLOB=1;HAVE_SQLITE3_CLEAR_BINDINGS=1;HAVE_SQLITE3_BIND_PARAMETER_COUNT=1;HAVE_SQLITE3_BIND_PARAMETER_NAME=1;HAVE_SQLITE3_BIND_PARAMETER_INDEX=1;HAVE_SQLITE3_RESULT_ZEROBLOB=1;HAVE_SQLITE3_INCRBLOBIO=1;HAVE_SQLITE3_SHARED_CACHE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<PreBuildEvent>
<Command>
mkdir "./$(OutDir)/jdbc_classes/"
echo compiling JDBC classes
javac -g -target 1.5 -d "$(OutDir)\jdbc_classes" -classpath "$(OutDir)\jdbc_classes" ..\..\lang\sql\jdbc\SQLite\*java ..\..\lang\sql\jdbc\SQLite\JDBC2x\*java
echo Building JNI header files
javah -o ..\..\lang\sql\jdbc\native\sqlite_jni.h -classpath "$(OutDir)\jdbc_classes" SQLite.Database SQLite.Vm SQLite.FunctionContext SQLite.Stmt SQLite.Blob
echo creating jar file
jar cf "$(OutDir)\jdbc.jar" -C "$(OutDir)\jdbc_classes" .
echo JDBC build finished</Command>
<Message/>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;../../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;HAVE_SQLITE3;HAVE_SQLITE3_MALLOC=1;HAVE_SQLITE3_PREPARE_V2=1;HAVE_SQLITE3_PREPARE16_V2=1;HAVE_SQLITE3_BIND_ZEROBLOB=1;HAVE_SQLITE3_CLEAR_BINDINGS=1;HAVE_SQLITE3_BIND_PARAMETER_COUNT=1;HAVE_SQLITE3_BIND_PARAMETER_NAME=1;HAVE_SQLITE3_BIND_PARAMETER_INDEX=1;HAVE_SQLITE3_RESULT_ZEROBLOB=1;HAVE_SQLITE3_INCRBLOBIO=1;HAVE_SQLITE3_SHARED_CACHE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<PreBuildEvent>
<Command>
mkdir "./$(OutDir)/jdbc_classes/"
echo compiling JDBC classes
javac -g -target 1.5 -d "$(OutDir)\jdbc_classes" -classpath "$(OutDir)\jdbc_classes" ..\..\lang\sql\jdbc\SQLite\*java ..\..\lang\sql\jdbc\SQLite\JDBC2x\*java
echo Building JNI header files
javah -o ..\..\lang\sql\jdbc\native\sqlite_jni.h -classpath "$(OutDir)\jdbc_classes" SQLite.Database SQLite.Vm SQLite.FunctionContext SQLite.Stmt SQLite.Blob
echo creating jar file
jar cf "$(OutDir)\jdbc.jar" -C "$(OutDir)\jdbc_classes" .
echo JDBC build finished</Command>
<Message/>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;../../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;HAVE_SQLITE3;HAVE_SQLITE3_MALLOC=1;HAVE_SQLITE3_PREPARE_V2=1;HAVE_SQLITE3_PREPARE16_V2=1;HAVE_SQLITE3_BIND_ZEROBLOB=1;HAVE_SQLITE3_CLEAR_BINDINGS=1;HAVE_SQLITE3_BIND_PARAMETER_COUNT=1;HAVE_SQLITE3_BIND_PARAMETER_NAME=1;HAVE_SQLITE3_BIND_PARAMETER_INDEX=1;HAVE_SQLITE3_RESULT_ZEROBLOB=1;HAVE_SQLITE3_INCRBLOBIO=1;HAVE_SQLITE3_SHARED_CACHE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<PreBuildEvent>
<Command>
mkdir "./$(OutDir)/jdbc_classes/"
echo compiling JDBC classes
javac -g -target 1.5 -d "$(OutDir)\jdbc_classes" -classpath "$(OutDir)\jdbc_classes" ..\..\lang\sql\jdbc\SQLite\*java ..\..\lang\sql\jdbc\SQLite\JDBC2x\*java
echo Building JNI header files
javah -o ..\..\lang\sql\jdbc\native\sqlite_jni.h -classpath "$(OutDir)\jdbc_classes" SQLite.Database SQLite.Vm SQLite.FunctionContext SQLite.Stmt SQLite.Blob
echo creating jar file
jar cf "$(OutDir)\jdbc.jar" -C "$(OutDir)\jdbc_classes" .
echo JDBC build finished</Command>
<Message/>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;../../lang/sql/jdbc/native;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;UNICODE;HAVE_SQLITE3;HAVE_SQLITE3_MALLOC=1;HAVE_SQLITE3_PREPARE_V2=1;HAVE_SQLITE3_PREPARE16_V2=1;HAVE_SQLITE3_BIND_ZEROBLOB=1;HAVE_SQLITE3_CLEAR_BINDINGS=1;HAVE_SQLITE3_BIND_PARAMETER_COUNT=1;HAVE_SQLITE3_BIND_PARAMETER_NAME=1;HAVE_SQLITE3_BIND_PARAMETER_INDEX=1;HAVE_SQLITE3_RESULT_ZEROBLOB=1;HAVE_SQLITE3_INCRBLOBIO=1;HAVE_SQLITE3_SHARED_CACHE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
<PreBuildEvent>
<Command>
mkdir "./$(OutDir)/jdbc_classes/"
echo compiling JDBC classes
javac -g -target 1.5 -d "$(OutDir)\jdbc_classes" -classpath "$(OutDir)\jdbc_classes" ..\..\lang\sql\jdbc\SQLite\*java ..\..\lang\sql\jdbc\SQLite\JDBC2x\*java
echo Building JNI header files
javah -o ..\..\lang\sql\jdbc\native\sqlite_jni.h -classpath "$(OutDir)\jdbc_classes" SQLite.Database SQLite.Vm SQLite.FunctionContext SQLite.Stmt SQLite.Blob
echo creating jar file
jar cf "$(OutDir)\jdbc.jar" -C "$(OutDir)\jdbc_classes" .
echo JDBC build finished</Command>
<Message/>
</PreBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\lang\sql\jdbc\native\sqlite_jni.c"/>
<ClCompile Include="..\..\lang\sql\jdbc\native\sqlite_jni.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -57,49 +57,49 @@
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_USRDLL;SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;SQLITE_CORE;_WIN32;WITHOUT_SHELL;HAVE_SQLITE3PREPAREV2=1;NO_TCL;THREADSAFE=1;SQLITE_DLL=1;SQLITE_THREADSAFE=1;SQLITE_OS_WIN=1;SQLITE_ASCII=1;SQLITE_SOUNDEX=1;SQLITE_OMIT_SHARED_CACHE=1;SQLITE_OMIT_EXPLAIN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb_sql53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_USRDLL;SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;SQLITE_CORE;_WIN32;WITHOUT_SHELL;HAVE_SQLITE3PREPAREV2=1;NO_TCL;THREADSAFE=1;SQLITE_DLL=1;SQLITE_THREADSAFE=1;SQLITE_OS_WIN=1;SQLITE_ASCII=1;SQLITE_SOUNDEX=1;SQLITE_OMIT_SHARED_CACHE=1;SQLITE_OMIT_EXPLAIN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb_sql53.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_USRDLL;SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;SQLITE_CORE;_WIN32;WITHOUT_SHELL;HAVE_SQLITE3PREPAREV2=1;NO_TCL;THREADSAFE=1;SQLITE_DLL=1;SQLITE_THREADSAFE=1;SQLITE_OS_WIN=1;SQLITE_ASCII=1;SQLITE_SOUNDEX=1;SQLITE_OMIT_SHARED_CACHE=1;SQLITE_OMIT_EXPLAIN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb_sql53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_USRDLL;SQLITE_EXPORTS;_CRT_SECURE_NO_WARNINGS;SQLITE_CORE;_WIN32;WITHOUT_SHELL;HAVE_SQLITE3PREPAREV2=1;NO_TCL;THREADSAFE=1;SQLITE_DLL=1;SQLITE_THREADSAFE=1;SQLITE_OS_WIN=1;SQLITE_ASCII=1;SQLITE_SOUNDEX=1;SQLITE_OMIT_SHARED_CACHE=1;SQLITE_OMIT_EXPLAIN=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb_sql53.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\lang\sql\odbc\sqlite3odbc.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\lang\sql\odbc\sqlite3odbc.c"/>
<ClCompile Include="..\..\lang\sql\odbc\sqlite3odbc.c"/>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="sql/odbc/sqlite3odbc.rc">
<ResourceCompile Include="../sql/odbc/sqlite3odbc.rc">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">_DEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">NDEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">_DEBUG;$(NoInherit));%(PreprocessorDefinitions)</PreprocessorDefinitions>

View file

@ -58,42 +58,42 @@
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOLE;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;SQLITE_DEBUG;SQLITE_MEMDEBUG;;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOLE;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOLE;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;SQLITE_DEBUG;SQLITE_MEMDEBUG;;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/sql/generated;../lang/sql/adapter;../lang/sql/sqlite/src;../lang/sql/sqlite/ext/fts3;../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOLE;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb_sql52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb_sql53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\lang\sql\sqlite\src\shell.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\shell.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -0,0 +1,231 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{5D79B660-0667-11DF-8A39-0800200C9A66}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup>
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform"/>
</ImportGroup>
<ImportGroup>
<Import Project="application.props"/>
</ImportGroup>
<PropertyGroup Label="UserMacros"/>
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<TargetName>testfixture</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOL;STATIC_BUILD;SQLITE_TEST;TCLSH;SQLITE_NO_SYNC;SQLITE_CRASH_TEST;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;SQLITE_MEMDEBUG;;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>tcl85g.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOL;STATIC_BUILD;SQLITE_TEST;TCLSH;SQLITE_NO_SYNC;SQLITE_CRASH_TEST;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>tcl85.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOL;STATIC_BUILD;SQLITE_TEST;TCLSH;SQLITE_NO_SYNC;SQLITE_CRASH_TEST;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;SQLITE_MEMDEBUG;;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>tcl85g.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../../lang/sql/generated;../../lang/sql/adapter;../../lang/sql/sqlite/src;../../lang/sql/sqlite/ext/fts3;../../lang/sql/sqlite/ext/rtree;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOL;STATIC_BUILD;SQLITE_TEST;TCLSH;SQLITE_NO_SYNC;SQLITE_CRASH_TEST;SQLITE_SERVER;SQLITE_PRIVATE;SQLITE_CORE;SQLITE_THREADSAFE=1;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>tcl85.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\lang\sql\sqlite\src\alter.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\analyze.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\attach.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\auth.c"/>
<ClCompile Include="..\..\lang\sql\adapter\backup.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\bitvec.c"/>
<ClCompile Include="..\..\lang\sql\adapter\btmutex.c"/>
<ClCompile Include="..\..\lang\sql\adapter\btree.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\build.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\callback.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\ctime.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\complete.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\date.c"/>
<ClCompile Include="..\..\lang\sql\adapter\db_pragma.c"/>
<ClCompile Include="..\..\lang\sql\adapter\db_sequence.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\delete.c"/>
<ClCompile Include="..\..\lang\sql\adapter\db_encrypt.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\expr.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\fault.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\fkey.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_aux.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_expr.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_hash.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_icu.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_porter.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_snippet.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_tokenizer1.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_tokenizer.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\fts3\fts3_write.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\func.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\global.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\hash.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\insert.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\journal.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\legacy.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\loadext.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\main.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\malloc.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem0.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem1.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem2.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem3.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mem5.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\memjournal.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mutex.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mutex_noop.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\mutex_w32.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\notify.c"/>
<ClCompile Include="..\..\lang\sql\generated\opcodes.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\os.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\os_win.c"/>
<ClCompile Include="..\..\lang\sql\adapter\pager.c"/>
<ClCompile Include="..\..\lang\sql\generated\parse.c"/>
<ClCompile Include="..\..\lang\sql\adapter\pcache.c"/>
<ClCompile Include="..\..\lang\sql\adapter\pcache1.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\pragma.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\prepare.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\printf.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\random.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\resolve.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\rowset.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\ext\rtree\rtree.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\select.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\status.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\table.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\tokenize.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\trigger.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\update.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\utf.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\util.c"/>
<ClCompile Include="..\..\lang\sql\adapter\vacuum.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbe.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbeapi.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbeaux.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbeblob.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbemem.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vdbetrace.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\vtab.c"/>
<ClCompile Include="..\..\lang\sql\adapter\wal.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\walker.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\where.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\tclsqlite.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_init.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test1.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test2.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test3.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test4.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test5.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test6.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test7.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test8.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test9.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_async.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_autoext.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_backup.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_btree.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_config.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_demovfs.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_devsym.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_func.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_fuzzer.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_hexio.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_intarray.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_journal.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_loadext.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_malloc.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_multiplex.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_mutex.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_onefile.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_osinst.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_pcache.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_quota.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_rtree.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_schema.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_server.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_syscall.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_superlock.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_stat.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_tclvar.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_thread.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_vfs.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_vfstrace.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_wholenumber.c"/>
<ClCompile Include="..\..\lang\sql\sqlite\src\test_wsd.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
<ItemGroup>
<ProjectReference Condition="exists('db.vcxproj')" Include="db.vcxproj">
<Project>{fd045d60-abad-4a6c-9794-9bfb085fc3e7}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_stat.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_stat.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -93,82 +93,82 @@
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|Win32'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52d.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53d.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Debug|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;DB_CREATE_DLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalDependencies>libdb53.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Static Release|x64'">
<ClCompile>
<AdditionalIncludeDirectories>../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../../lang/cxx/stl;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_UNICODE;UNICODE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\lang\cxx\stl\dbstl_exception.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_map.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_set.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_utility.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_vector.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_common.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_base_iterator.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_container.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_dbc.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_dbt.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_element_ref.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_inner_utility.h"/>
<ClInclude Include="..\lang\cxx\stl\dbstl_resource_manager.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_exception.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_map.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_set.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_utility.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_vector.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_common.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_base_iterator.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_container.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_dbc.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_dbt.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_element_ref.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_inner_utility.h"/>
<ClInclude Include="..\..\lang\cxx\stl\dbstl_resource_manager.h"/>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\lang\cxx\stl\dbstl_container.cpp"/>
<ClCompile Include="..\lang\cxx\stl\dbstl_resource_manager.cpp"/>
<ClCompile Include="..\..\lang\cxx\stl\dbstl_container.cpp"/>
<ClCompile Include="..\..\lang\cxx\stl\dbstl_resource_manager.cpp"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -60,8 +60,8 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;DB_TCL_SUPPORT;CONFIG_TEST;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52d.lib;tcl85g.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb53d.lib;tcl85g.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
@ -69,8 +69,8 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;DB_TCL_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52.lib;tcl85.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb53.lib;tcl85.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
@ -78,8 +78,8 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;DB_TCL_SUPPORT;CONFIG_TEST;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52d.lib;tcl85g.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb53d.lib;tcl85g.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
@ -87,30 +87,30 @@
<PreprocessorDefinitions>DB_CREATE_DLL;_UNICODE;DB_TCL_SUPPORT;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalDependencies>libdb52.lib;tcl85.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
<AdditionalDependencies>libdb53.lib;tcl85.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>..\..\build_windows\libdb_tcl.def</ModuleDefinitionFile>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\src\os\os_abort.c"/>
<ClCompile Include="..\src\os\os_stack.c"/>
<ClCompile Include="..\lang\tcl\tcl_compat.c"/>
<ClCompile Include="..\lang\tcl\tcl_db.c"/>
<ClCompile Include="..\lang\tcl\tcl_db_pkg.c"/>
<ClCompile Include="..\lang\tcl\tcl_dbcursor.c"/>
<ClCompile Include="..\lang\tcl\tcl_env.c"/>
<ClCompile Include="..\lang\tcl\tcl_internal.c"/>
<ClCompile Include="..\lang\tcl\tcl_lock.c"/>
<ClCompile Include="..\lang\tcl\tcl_log.c"/>
<ClCompile Include="..\lang\tcl\tcl_mp.c"/>
<ClCompile Include="..\lang\tcl\tcl_mutex.c"/>
<ClCompile Include="..\lang\tcl\tcl_rep.c"/>
<ClCompile Include="..\lang\tcl\tcl_seq.c"/>
<ClCompile Include="..\lang\tcl\tcl_txn.c"/>
<ClCompile Include="..\lang\tcl\tcl_util.c"/>
<ClCompile Include="..\..\src\os\os_abort.c"/>
<ClCompile Include="..\..\src\os\os_stack.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_compat.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_db.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_db_pkg.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_dbcursor.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_env.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_internal.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_lock.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_log.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_mp.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_mutex.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_rep.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_seq.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_txn.c"/>
<ClCompile Include="..\..\lang\tcl\tcl_util.c"/>
</ItemGroup>
<ItemGroup>
<None Include="libdb_tcl.def"/>
<None Include="../libdb_tcl.def"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -57,8 +57,8 @@
<TargetName>dbkill</TargetName>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\build_windows\dbkill.cpp"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\build_windows\dbkill.cpp"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_tuner.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_tuner.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_upgrade.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_upgrade.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

View file

@ -56,8 +56,8 @@
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="..\util\db_verify.c"/>
<ClCompile Include="..\src\clib\getopt.c"/>
<ClCompile Include="..\..\util\db_verify.c"/>
<ClCompile Include="..\..\src\clib\getopt.c"/>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
<ImportGroup Label="ExtensionTargets">

Some files were not shown because too many files have changed in this diff Show more