diff options
Diffstat (limited to 'src/test7.c')
-rw-r--r-- | src/test7.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test7.c b/src/test7.c index 897d911ba..04a10fa9d 100644 --- a/src/test7.c +++ b/src/test7.c @@ -12,7 +12,7 @@ ** Code for testing the client/server version of the SQLite library. ** Derived from test4.c. ** -** $Id: test7.c,v 1.10 2007/10/05 15:04:13 danielk1977 Exp $ +** $Id: test7.c,v 1.11 2008/06/26 10:41:19 danielk1977 Exp $ */ #include "sqliteInt.h" #include "tcl.h" @@ -22,7 +22,7 @@ ** the SQLITE_SERVER option. */ #if defined(SQLITE_SERVER) && !defined(SQLITE_OMIT_SHARED_CACHE) && \ - defined(OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE + defined(SQLITE_OS_UNIX) && OS_UNIX && SQLITE_THREADSAFE #include <stdlib.h> #include <string.h> @@ -720,4 +720,4 @@ int Sqlitetest7_Init(Tcl_Interp *interp){ } #else int Sqlitetest7_Init(Tcl_Interp *interp){ return TCL_OK; } -#endif /* OS_UNIX */ +#endif /* SQLITE_OS_UNIX */ |