aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile.netware
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-08-15 02:58:15 +0000
committerYang Tse <yangsita@gmail.com>2008-08-15 02:58:15 +0000
commit66fb9ca5f6de6eb74c2c3ade7ee651a299247749 (patch)
treecfa88c9844546ba7d13375df915fe0fa4a136abc /lib/Makefile.netware
parent11cb78c5f8338e23d12cee9a1cf0a9bbc7261af2 (diff)
For congruency sake with the naming of other CURL_XXXXXX_CURL_OFF_T macros,
the names of the curl_off_t formatting string directives now become CURL_FORMAT_CURL_OFF_T and CURL_FORMAT_CURL_OFF_TU. CURL_FMT_OFF_T -> CURL_FORMAT_CURL_OFF_T CURL_FMT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU Remove the use of an internal name for the curl_off_t formatting string directives and use the common one available from the inside and outside of the library. FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
Diffstat (limited to 'lib/Makefile.netware')
-rw-r--r--lib/Makefile.netware8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware
index 845ec8efe..30a2b563a 100644
--- a/lib/Makefile.netware
+++ b/lib/Makefile.netware
@@ -601,8 +601,8 @@ $(CURL_INC)/curl/curlbuild.h: Makefile.netware FORCE
ifeq ($(LIBARCH),LIBC)
@echo $(DL)#define CURL_SIZEOF_LONG 4$(DL) >> $@
@echo $(DL)#define CURL_OFF_T long long$(DL) >> $@
- @echo $(DL)#define CURL_FMT_OFF_T "lld"$(DL) >> $@
- @echo $(DL)#define CURL_FMT_OFF_TU "llu"$(DL) >> $@
+ @echo $(DL)#define CURL_FORMAT_CURL_OFF_T "lld"$(DL) >> $@
+ @echo $(DL)#define CURL_FORMAT_CURL_OFF_TU "llu"$(DL) >> $@
@echo $(DL)#define CURL_FORMAT_OFF_T "$(PCT)lld"$(DL) >> $@
@echo $(DL)#define CURL_SIZEOF_CURL_OFF_T 8$(DL) >> $@
@echo $(DL)#define CURL_SUFFIX_CURL_OFF_T LL$(DL) >> $@
@@ -610,8 +610,8 @@ ifeq ($(LIBARCH),LIBC)
else
@echo $(DL)#define CURL_SIZEOF_LONG 4$(DL) >> $@
@echo $(DL)#define CURL_OFF_T long$(DL) >> $@
- @echo $(DL)#define CURL_FMT_OFF_T "ld"$(DL) >> $@
- @echo $(DL)#define CURL_FMT_OFF_TU "lu"$(DL) >> $@
+ @echo $(DL)#define CURL_FORMAT_CURL_OFF_T "ld"$(DL) >> $@
+ @echo $(DL)#define CURL_FORMAT_CURL_OFF_TU "lu"$(DL) >> $@
@echo $(DL)#define CURL_FORMAT_OFF_T "$(PCT)ld"$(DL) >> $@
@echo $(DL)#define CURL_SIZEOF_CURL_OFF_T 4$(DL) >> $@
@echo $(DL)#define CURL_SUFFIX_CURL_OFF_T L$(DL) >> $@