diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-30 01:34:04 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-30 01:34:04 +0000 |
commit | dd50e5bdf286897b91b478f607f7487770b57a2d (patch) | |
tree | 6fa5fc3e3893ba1a76d972212252cd64ffab3830 /lib | |
parent | 504ecd5f7a47185c503d263dae1ff8d75b1a892d (diff) |
Use 'unsigned int' instead of size_t attempting to avoid header inclusion
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.netware | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware index fe896d7a6..c1c2b251d 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) >> $@ |