OSDN Git Service

libc/inet: set path to resolver file via CPP
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 23 Jan 2010 20:22:32 +0000 (21:22 +0100)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 23 Jan 2010 20:22:32 +0000 (21:22 +0100)
No objcode changes.

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
34 files changed:
libc/inet/Makefile.in
libc/inet/_res_state.c
libc/inet/closenameservers.c
libc/inet/decodea.c
libc/inet/decoded.c
libc/inet/decodeh.c
libc/inet/decodep.c
libc/inet/decodeq.c
libc/inet/dnslookup.c
libc/inet/encodea.c
libc/inet/encoded.c
libc/inet/encodeh.c
libc/inet/encodep.c
libc/inet/encodeq.c
libc/inet/formquery.c
libc/inet/get_hosts_byaddr_r.c
libc/inet/get_hosts_byname_r.c
libc/inet/gethostbyaddr.c
libc/inet/gethostbyaddr_r.c
libc/inet/gethostbyname.c
libc/inet/gethostbyname2.c
libc/inet/gethostbyname2_r.c
libc/inet/gethostbyname_r.c
libc/inet/gethostent.c
libc/inet/gethostent_r.c
libc/inet/getnameinfo.c
libc/inet/lengthd.c
libc/inet/lengthq.c
libc/inet/ns_name.c
libc/inet/opennameservers.c
libc/inet/read_etc_hosts_r.c
libc/inet/res_comp.c
libc/inet/res_init.c
libc/inet/res_query.c

index a91d37f..702642f 100644 (file)
@@ -12,6 +12,7 @@ include $(top_srcdir)libc/inet/rpc/Makefile.in
 INET_DIR := $(top_srcdir)libc/inet
 INET_OUT := $(top_builddir)libc/inet
 
+CFLAGS-inet := -DRESOLVER="\"resolv.c\""
 CSRC-y :=
 # des uses ntohl
 CSRC-$(findstring y,$(UCLIBC_HAS_CRYPT_IMPL)$(UCLIBC_HAS_IPV4)$(UCLIBC_HAS_IPV6)) += ntohl.c
index 8ca4ac1..dc0d89f 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_res_state
-#include "resolv.c"
+#include RESOLVER
index ca4dae3..65889a7 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_closenameservers
-#include "resolv.c"
+#include RESOLVER
index 409a978..112d5d9 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_decodea
-#include "resolv.c"
+#include RESOLVER
index 73849ef..378cbfa 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_decoded
-#include "resolv.c"
+#include RESOLVER
index 86681fa..7744287 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_decodeh
-#include "resolv.c"
+#include RESOLVER
index 40b0bda..0e946e0 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_decodep
-#include "resolv.c"
+#include RESOLVER
index a610967..9e36b95 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_decodeq
-#include "resolv.c"
+#include RESOLVER
index 4ffc34f..b9f59a2 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_dnslookup
-#include "resolv.c"
+#include RESOLVER
index 628f9ba..b42ee4a 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_encodea
-#include "resolv.c"
+#include RESOLVER
index d606187..27f92be 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_encoded
-#include "resolv.c"
+#include RESOLVER
index 1d54880..6a69a94 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_encodeh
-#include "resolv.c"
+#include RESOLVER
index d2f248b..d298c21 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_encodep
-#include "resolv.c"
+#include RESOLVER
index be1a312..5555aa5 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_encodeq
-#include "resolv.c"
+#include RESOLVER
index 2c53e33..4bc0ebe 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_formquery
-#include "resolv.c"
+#include RESOLVER
index c377aec..eeac890 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_get_hosts_byaddr_r
-#include "resolv.c"
+#include RESOLVER
index 7ad1e3f..caad0bc 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_get_hosts_byname_r
-#include "resolv.c"
+#include RESOLVER
index ae8a543..dc16dd9 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostbyaddr
-#include "resolv.c"
+#include RESOLVER
index 6235c82..6e27e62 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostbyaddr_r
-#include "resolv.c"
+#include RESOLVER
index 3d46ab0..9c9e9ca 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostbyname
-#include "resolv.c"
+#include RESOLVER
index 6858016..5b9e74b 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostbyname2
-#include "resolv.c"
+#include RESOLVER
index 06d058a..0de0dd5 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostbyname2_r
-#include "resolv.c"
+#include RESOLVER
index fc9e56d..4b34f8d 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostbyname_r
-#include "resolv.c"
+#include RESOLVER
index 16133c0..64c1831 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostent
-#include "resolv.c"
+#include RESOLVER
index aeade15..48225d7 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_gethostent_r
-#include "resolv.c"
+#include RESOLVER
index fbfd3ed..86edc51 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_getnameinfo
-#include "resolv.c"
+#include RESOLVER
index 07c7fc6..d2db685 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_lengthd
-#include "resolv.c"
+#include RESOLVER
index e62e6f2..beeafc1 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_lengthq
-#include "resolv.c"
+#include RESOLVER
index 158a1a3..9df9464 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_ns_name
-#include "resolv.c"
+#include RESOLVER
index effd108..576c8ca 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_opennameservers
-#include "resolv.c"
+#include RESOLVER
index 6504e54..1ec74a5 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_read_etc_hosts_r
-#include "resolv.c"
+#include RESOLVER
index 8aee6b1..51ea4f2 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_res_comp
-#include "resolv.c"
+#include RESOLVER
index 09caf49..b1a1757 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_res_init
-#include "resolv.c"
+#include RESOLVER
index c662510..f3e569f 100644 (file)
@@ -5,4 +5,4 @@
  */
 
 #define L_res_query
-#include "resolv.c"
+#include RESOLVER