diff --git a/libs/postgresql/Makefile b/libs/postgresql/Makefile index dd4b28ef60..ebec6cad0e 100644 --- a/libs/postgresql/Makefile +++ b/libs/postgresql/Makefile @@ -66,9 +66,21 @@ define Package/pgsql-server/description PostgreSQL databases Server. endef +ifeq ($(CONFIG_USE_UCLIBC),y) +# PostgreSQL does not build against uClibc with locales +# enabled, due to an uClibc bug, see +# http://lists.uclibc.org/pipermail/uclibc/2014-April/048326.html +# so overwrite automatic detection and disable locale support +PGSQL_CONFIG_VARS+= \ + pgac_cv_type_locale_t=no +endif + +TARGET_CONFIGURE_OPTS+=$(PGSQL_CONFIG_VARS) + # Need a native ecpg ,pg_config, and zic for build define Build/Configure (cd $(PKG_BUILD_DIR); rm -f config.cache; \ + $(PGSQL_CONFIG_VARS) \ ./configure \ --prefix=/usr \ --exec-prefix=/usr \