1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Disable loadable extensions in the command-line shell on VxWorks user-space.

FossilOrigin-Name: 0ee2d38deb35aefc55395e86984a9a773caf6218
This commit is contained in:
drh
2015-03-23 21:32:50 +00:00
parent d741129e2b
commit ada3f2b14f
3 changed files with 8 additions and 9 deletions

View File

@@ -27,7 +27,7 @@
/*
** No support for loadable extensions in VxWorks.
*/
#if defined(_WRS_KERNEL) && !SQLITE_OMIT_LOAD_EXTENSION
#if (defined(__RTP__) || defined(_WRS_KERNEL)) && !SQLITE_OMIT_LOAD_EXTENSION
# define SQLITE_OMIT_LOAD_EXTENSION 1
#endif