summaryrefslogtreecommitdiff
path: root/Makefile.netware
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2009-04-30 01:34:04 +0000
committerYang Tse <yangsita@gmail.com>2009-04-30 01:34:04 +0000
commitf444fb7f8850bdc6c54c96b0176fece3e18b4a4c (patch)
treeb240110848863ffd86b2559ff37a218115497b9d /Makefile.netware
parentd19611328c87de7def4c60039cebb8c2533860e0 (diff)
downloadc-ares-f444fb7f8850bdc6c54c96b0176fece3e18b4a4c.tar.gz
c-ares-f444fb7f8850bdc6c54c96b0176fece3e18b4a4c.tar.bz2
c-ares-f444fb7f8850bdc6c54c96b0176fece3e18b4a4c.zip
Use 'unsigned int' instead of size_t attempting to avoid header inclusion
Diffstat (limited to 'Makefile.netware')
-rw-r--r--Makefile.netware2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.netware b/Makefile.netware
index 89fdf4c..71cb242 100644
--- a/Makefile.netware
+++ b/Makefile.netware
@@ -425,7 +425,7 @@ ifeq ($(LIBARCH),CLIB)
@echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T int$(DL) >> $@
@echo $(DL)#define CARES_SIZEOF_ARES_SOCKLEN_T 4$(DL) >> $@
else
- @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T size_t$(DL) >> $@
+ @echo $(DL)#define CARES_TYPEOF_ARES_SOCKLEN_T unsigned int$(DL) >> $@
@echo $(DL)#define CARES_SIZEOF_ARES_SOCKLEN_T 4$(DL) >> $@
endif
@echo $(DL)#define CARES_SIZEOF_LONG 4$(DL) >> $@