diff options
author | drh <drh@noemail.net> | 2008-12-11 02:56:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-12-11 02:56:07 +0000 |
commit | 103fe74315208ecc2bd6439ace40c193aab55752 (patch) | |
tree | 59b9ff86d83e7900ec00526e44af76a11d1ec95f /src/os_unix.c | |
parent | 15b024c22ab6d54e51156908f68e9fff6ac0c8d2 (diff) | |
download | sqlite-103fe74315208ecc2bd6439ace40c193aab55752.tar.gz sqlite-103fe74315208ecc2bd6439ace40c193aab55752.zip |
Fix the TCL test harness so that it compiles and runs on OSX with
SQLITE_ENABLE_LOCKING_STYLE. (CVS 6017)
FossilOrigin-Name: 561d5de16ec07546a3bb691f308fb2495a0d0a43
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 7675300d7..097c044ed 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -43,7 +43,7 @@ ** * Definitions of sqlite3_vfs objects for all locking methods ** plus implementations of sqlite3_os_init() and sqlite3_os_end(). ** -** $Id: os_unix.c,v 1.231 2008/12/10 19:26:24 drh Exp $ +** $Id: os_unix.c,v 1.232 2008/12/11 02:56:07 drh Exp $ */ #include "sqliteInt.h" #if SQLITE_OS_UNIX /* This file is used on unix only */ @@ -2936,7 +2936,7 @@ static int unixFileSize(sqlite3_file *id, i64 *pSize){ return SQLITE_OK; } -#if SQLITE_ENABLE_LOCKING_MODE && defined(__DARWIN__) +#if SQLITE_ENABLE_LOCKING_STYLE && defined(__DARWIN__) /* ** Handler for proxy-locking file-control verbs. Defined below in the ** proxying locking division. @@ -3451,7 +3451,7 @@ static int getTempname(int nBuf, char *zBuf){ return SQLITE_OK; } -#if SQLITE_ENABLE_LOCKING_MODE && defined(__DARWIN__) +#if SQLITE_ENABLE_LOCKING_STYLE && defined(__DARWIN__) /* ** Routine to transform a unixFile into a proxy-locking unixFile. ** Implementation in the proxy-lock division, but used by unixOpen() |