diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-13 10:36:25 +0000 |
commit | e324184c0509cc0db168ce29546e1b52800a79c6 (patch) | |
tree | 9d4f18b3cc1ab715b6ff91cc9e3e942d11dfc51f /libbb | |
parent | 5f1b149d541ebba7cab841cb647f113248f9fb8f (diff) | |
download | busybox-e324184c0509cc0db168ce29546e1b52800a79c6.tar.gz |
s/#ifdef CONFIG_/#if ENABLE_/g
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/create_icmp6_socket.c | 8 | ||||
-rw-r--r-- | libbb/create_icmp_socket.c | 6 | ||||
-rw-r--r-- | libbb/inet_common.c | 2 | ||||
-rw-r--r-- | libbb/xgethostbyname.c | 2 |
4 files changed, 9 insertions, 9 deletions
diff --git a/libbb/create_icmp6_socket.c b/libbb/create_icmp6_socket.c index b90f3e9fd..51899cdc5 100644 --- a/libbb/create_icmp6_socket.c +++ b/libbb/create_icmp6_socket.c @@ -7,12 +7,12 @@ * */ -#include <sys/types.h> -#include <netdb.h> -#include <sys/socket.h> +//#include <sys/types.h> +//#include <netdb.h> +//#include <sys/socket.h> #include "libbb.h" -#ifdef CONFIG_FEATURE_IPV6 +#if ENABLE_FEATURE_IPV6 int create_icmp6_socket(void) { struct protoent *proto; diff --git a/libbb/create_icmp_socket.c b/libbb/create_icmp_socket.c index dbd4769f6..3a4655885 100644 --- a/libbb/create_icmp_socket.c +++ b/libbb/create_icmp_socket.c @@ -7,9 +7,9 @@ * */ -#include <sys/types.h> -#include <netdb.h> -#include <sys/socket.h> +//#include <sys/types.h> +//#include <netdb.h> +//#include <sys/socket.h> #include "libbb.h" int create_icmp_socket(void) diff --git a/libbb/inet_common.c b/libbb/inet_common.c index ec3c3f9bb..7e799b5e1 100644 --- a/libbb/inet_common.c +++ b/libbb/inet_common.c @@ -164,7 +164,7 @@ char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask) return name; } -#ifdef CONFIG_FEATURE_IPV6 +#if ENABLE_FEATURE_IPV6 int INET6_resolve(const char *name, struct sockaddr_in6 *sin6) { diff --git a/libbb/xgethostbyname.c b/libbb/xgethostbyname.c index c3158c339..3bb522d80 100644 --- a/libbb/xgethostbyname.c +++ b/libbb/xgethostbyname.c @@ -7,7 +7,7 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include <netdb.h> +//#include <netdb.h> #include "libbb.h" struct hostent *xgethostbyname(const char *name) |