diff options
Diffstat (limited to 'package/cppcms/cppcms.mk')
-rw-r--r-- | package/cppcms/cppcms.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/cppcms/cppcms.mk b/package/cppcms/cppcms.mk index 4068df70a1..206b30fcbe 100644 --- a/package/cppcms/cppcms.mk +++ b/package/cppcms/cppcms.mk @@ -18,6 +18,11 @@ CPPCMS_CONF_OPT += -DDISABLE_ICONV=ON CPPCMS_DEPENDENCIES += icu endif +ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) +# posix backend needs monetary.h which isn't available on uClibc +CPPCMS_CONF_OPT += -DDISABLE_POSIX_LOCALE=on +endif + # We copy cppcms_tmpl_cc from staging to host because this file can be # needed for compiling packages using cppcms. And it is not worth # creating a host package just for a python script. |