Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] sqlite: Add new compile-time options
@ 2012-08-12 19:16 Stefan Froberg
  2012-08-12 19:17 ` Stefan Froberg
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Froberg @ 2012-08-12 19:16 UTC (permalink / raw)
  To: buildroot

This patch will add the following optional compile-time options to SQLite:

SQLITE_ENABLE_FTS3
SQLITE_ENABLE_UNLOCK_NOTIFY
SQLITE_SECURE_DELETE

To check what compile-time options currently are in your 
version of SQLite compile the following little test program with:

gcc -o sqlite_check sqlite_check.c -lsqlite3

#include <stdio.h>
#include <sqlite3.h>

int main(void)
{
	int n = 0;
	const char* s = NULL;
	
	printf("Your SQLite has the following compile-time options:\n");
	do {
		s = sqlite3_compileoption_get(n++);
		if(s != NULL)
			printf("%s\n",s);
	} while(s != NULL);

	return(0);
}

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-11-04 11:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-12 19:16 [Buildroot] [PATCH] sqlite: Add new compile-time options Stefan Froberg
2012-08-12 19:17 ` Stefan Froberg
2012-11-04 11:16   ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox