blob: 62cf1862896a8dbd881fc984836f3614365eb2f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef CONFIG_EXTENSION_UPDATE
#define CONFIG_EXTENSION_UPDATE
/* EXTENSIONS - Whether we have any extension mechanism at all
*
* Primarily intended for non-desktop platforms where supporting
* extensions can be complicated, or even prohibited by the OS (as on
* iOS).
*/
#define HAVE_FEATURE_EXTENSIONS 0
#define ENABLE_EXTENSION_UPDATE 0
#endif
|