From: Yang Tse Date: Thu, 30 Apr 2009 01:34:04 +0000 (+0000) Subject: Use 'unsigned int' instead of size_t attempting to avoid header inclusion X-Git-Tag: curl-7_19_5~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd50e5bdf286897b91b478f607f7487770b57a2d;p=thirdparty%2Fcurl.git Use 'unsigned int' instead of size_t attempting to avoid header inclusion --- diff --git a/ares/Makefile.netware b/ares/Makefile.netware index 89fdf4c75b..71cb242f50 100644 --- a/ares/Makefile.netware +++ b/ares/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) >> $@ diff --git a/lib/Makefile.netware b/lib/Makefile.netware index fe896d7a63..c1c2b251df 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -619,7 +619,7 @@ $(CURL_INC)/curl/curlbuild.h: Makefile.netware FORCE @echo $(DL)#define __CURL_CURLBUILD_H$(DL) >> $@ ifeq ($(LIBARCH),LIBC) @echo $(DL)#define CURL_SIZEOF_LONG 4$(DL) >> $@ - @echo $(DL)#define CURL_TYPEOF_CURL_SOCKLEN_T size_t$(DL) >> $@ + @echo $(DL)#define CURL_TYPEOF_CURL_SOCKLEN_T unsigned int$(DL) >> $@ @echo $(DL)#define CURL_SIZEOF_CURL_SOCKLEN_T 4$(DL) >> $@ @echo $(DL)#define CURL_TYPEOF_CURL_OFF_T long long$(DL) >> $@ @echo $(DL)#define CURL_FORMAT_CURL_OFF_T "lld"$(DL) >> $@