blob: f81b33768df1a4ccecc459bfd0d89ba6eeb7d9d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Include this file to ensure that this code is not
* compiled into the MPL subset.
*/
#ifndef CONFIG_LGPL_H
#define CONFIG_LGPL_H
#define MPL_HAVE_SUBSET 0
#if MPL_HAVE_SUBSET
# error "Attempting to compile LGPL code into MPL subset"
#endif
#endif
|