mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
postgresql: fix IPv6 detection for uclibc compile
Assist configure IPv6 support detection for uclibc, fixes the following uclibc compile failure: auth.c: In function ‘CheckRADIUSAuth’: auth.c:2379:24: error: ‘in6addr_any’ undeclared (first use in this function) localaddr.sin6_addr = in6addr_any; Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
f5e4ca1022
commit
f909587180
@ -14,6 +14,12 @@ POSTGRESQL_INSTALL_STAGING = YES
|
|||||||
POSTGRESQL_CONFIG_SCRIPTS = pg_config
|
POSTGRESQL_CONFIG_SCRIPTS = pg_config
|
||||||
|
|
||||||
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
|
||||||
|
# overwrite IPV6 detection
|
||||||
|
ifeq ($(BR2_INET_IPV6),y)
|
||||||
|
POSTGRESQL_CONF_ENV += ac_cv_type_struct_sockaddr_in6=yes
|
||||||
|
else
|
||||||
|
POSTGRESQL_CONF_ENV += ac_cv_type_struct_sockaddr_in6=no
|
||||||
|
endif
|
||||||
# PostgreSQL does not build against uClibc with locales
|
# PostgreSQL does not build against uClibc with locales
|
||||||
# enabled, due to an uClibc bug, see
|
# enabled, due to an uClibc bug, see
|
||||||
# http://lists.uclibc.org/pipermail/uclibc/2014-April/048326.html
|
# http://lists.uclibc.org/pipermail/uclibc/2014-April/048326.html
|
||||||
|
Loading…
x
Reference in New Issue
Block a user