gethostbyname() and gethostbyname_r() should be built even if there is no host file support. From Sebastien Lorquet

This commit is contained in:
Sebastien Lorquet 2015-07-17 09:43:28 -06:00 committed by Gregory Nutt
parent 4eec7041fc
commit b5016f3a7f
1 changed files with 2 additions and 5 deletions

View File

@ -37,21 +37,18 @@ ifeq ($(CONFIG_LIBC_NETDB),y)
# Add the netdb C files to the build # Add the netdb C files to the build
CSRCS += lib_netdb.c CSRCS += lib_netdb.c lib_gethostbyname.c lib_gethostbynamer.c
# Add host file support # Add host file support
ifeq ($(CONFIG_NETDB_HOSTFILE),y) ifeq ($(CONFIG_NETDB_HOSTFILE),y)
CSRCS += lib_gethostbyname.c lib_gethostbynamer.c lib_gethostbyaddr.c CSRCS += lib_gethostbyaddr.c
CSRCS += lib_gethostbyaddrr.c lib_parsehostfile.c CSRCS += lib_gethostbyaddrr.c lib_parsehostfile.c
endif endif
# Add DNS lookup support # Add DNS lookup support
ifeq ($(CONFIG_NETDB_DNSCLIENT),y) ifeq ($(CONFIG_NETDB_DNSCLIENT),y)
ifneq ($(CONFIG_NETDB_HOSTFILE),y)
CSRCS += lib_gethostbyname.c lib_gethostbynamer.c
endif
CSRCS += lib_dnsclient.c CSRCS += lib_dnsclient.c
endif endif