diff options
author | Yang Tse <yangsita@gmail.com> | 2013-01-03 03:53:06 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2013-01-03 05:50:26 +0100 |
commit | 13606bbfdeaa3bac193e1f39a05a9c9b5f15d1b5 (patch) | |
tree | 2213bc5bee29121d23b34de0346ee1324295c379 /packages/OS400/make-lib.sh | |
parent | 8f0171bdd498f5febfb9bc93c234c30287227e74 (diff) | |
download | curl-13606bbfdeaa3bac193e1f39a05a9c9b5f15d1b5.tar.gz |
build: make use of 93 lib/*.c renamed files
93 *.c source files renamed to use our standard naming scheme.
This change affects 77 files in libcurl's source tree.
Diffstat (limited to 'packages/OS400/make-lib.sh')
-rw-r--r-- | packages/OS400/make-lib.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/OS400/make-lib.sh b/packages/OS400/make-lib.sh index a9e1c3861..d9c6e9e95 100644 --- a/packages/OS400/make-lib.sh +++ b/packages/OS400/make-lib.sh @@ -13,7 +13,7 @@ cd "${TOPDIR}/lib" echo '#pragma comment(user, "libcurl version '"${LIBCURL_VERSION}"'")' > os400.c echo '#pragma comment(user, __DATE__)' >> os400.c echo '#pragma comment(user, __TIME__)' >> os400.c -echo '#pragma comment(copyright, "Copyright (C) 1998-2012 Daniel Stenberg et al. OS/400 version by P. Monnerat")' >> os400.c +echo '#pragma comment(copyright, "Copyright (C) 1998-2013 Daniel Stenberg et al. OS/400 version by P. Monnerat")' >> os400.c make_module OS400 os400.c LINK= # No need to rebuild service program yet. MODULES= @@ -151,13 +151,13 @@ fi if [ "${TEST_FORMDATA}" ] then MODULES= - make_module TFORMDATA formdata.c "'_FORM_DEBUG' 'CURLDEBUG'" - make_module TSTREQUAL strequal.c "'_FORM_DEBUG' 'CURLDEBUG'" - make_module TMEMDEBUG memdebug.c "'_FORM_DEBUG' 'CURLDEBUG'" - make_module TMPRINTF mprintf.c "'_FORM_DEBUG' 'CURLDEBUG'" - make_module TSTRERROR strerror.c "'_FORM_DEBUG' 'CURLDEBUG'" + make_module TFORMDATA curl_formdata.c "'_FORM_DEBUG' 'CURLDEBUG'" + make_module TSTREQUAL curl_strequal.c "'_FORM_DEBUG' 'CURLDEBUG'" + make_module TMEMDEBUG curl_memdebug.c "'_FORM_DEBUG' 'CURLDEBUG'" + make_module TMPRINTF curl_mprintf.c "'_FORM_DEBUG' 'CURLDEBUG'" + make_module TSTRERROR curl_strerror.c "'_FORM_DEBUG' 'CURLDEBUG'" # The following modules should not be needed (see comment in - # formdata.c. However, there are some unsatisfied + # curl_formdata.c. However, there are some unsatisfied # external references leading in the following # modules to be (recursively) needed. MODULES="${MODULES} EASY STRDUP SSLGEN QSSL HOSTIP HOSTIP4 HOSTIP6" |