SQLite3.c中的一个bug:error: expected value in expression #if SQLITE_HAS_CODEC

前端之家收集整理的这篇文章主要介绍了SQLite3.c中的一个bug:error: expected value in expression #if SQLITE_HAS_CODEC前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

I got a error: expected value in expression #if sqlITE_HAS_CODEC after I add the code in sqlite3.c as below:

#ifndef sqlITE_HAS_CODEC
#define sqlITE_HAS_CODEC
#endif

so I try to get the latest sqlite3.c as below:

tar xzf sqlite.tar.gz    ;# Unpack the source tree into "sqlite"
    mkdir bld                ;# Build will occur in a sibling directory
    cd bld                   ;# Change to the build directory
    ../sqlite/configure      ;# Run the configure script
    make                     ;# Run the makefile.
    make sqlite3.c           ;# Build the "amalgamation" source file
    make test                ;# Run some tests (requires Tcl)

I find out the result:

➜  bld cat sqlite3.c |grep '#if sqlITE_HAS_CODEC'
#if sqlITE_HAS_CODEC
#if sqlITE_HAS_CODEC
#if sqlITE_HAS_CODEC 
#if sqlITE_HAS_CODEC

猜你在找的Sqlite相关文章