The SQLITE_HAS_CODEC define is present in the PRO file in the wiki but that is used for compiling the Qt half of the driver which is linked to the already built SQLCipher library. The problem here is building the SQLCipher library, which is not Qt related.
The options are not present in the section titled Building SQLCipher. On my Gentoo machine it would not compile and link without:
Qt Code:
./configure --prefix=/usr/local CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"To copy to clipboard, switch view to plain text mode
Bookmarks