mirror of
https://github.com/moparisthebest/curl
synced 2024-12-23 00:28:48 -05:00
--libcurl: simplify output
Removed the code that was needed for libcurl before 7.19.0 which now is more than two years old. Simplified the top comment and corrected the URL.
This commit is contained in:
parent
6a07e704ca
commit
517d3eb0a4
21
src/main.c
21
src/main.c
@ -4188,15 +4188,9 @@ static CURLcode _my_setopt(CURL *curl, bool str, struct Configurable *config,
|
|||||||
|
|
||||||
static const char * const srchead[]={
|
static const char * const srchead[]={
|
||||||
"/********* Sample code generated by the curl command line tool **********",
|
"/********* Sample code generated by the curl command line tool **********",
|
||||||
" * Add error code checking where appropriate!",
|
" * All curl_easy_setopt() options are documented at:",
|
||||||
" * Compile this with a suitable header include path. Then link with ",
|
" * http://curl.haxx.se/libcurl/c/curl_easy_setopt.html",
|
||||||
" * libcurl.",
|
|
||||||
" * If you use any *_LARGE options, make sure your compiler figure",
|
|
||||||
" * out the correct size for the curl_off_t variable.",
|
|
||||||
" * Read the details for all curl_easy_setopt() options online on:",
|
|
||||||
" * http://curlm.haxx.se/libcurl/c/curl_easy_setopt.html",
|
|
||||||
" ************************************************************************/",
|
" ************************************************************************/",
|
||||||
"[m]",
|
|
||||||
"#include <curl/curl.h>",
|
"#include <curl/curl.h>",
|
||||||
"",
|
"",
|
||||||
"int main(int argc, char *argv[])",
|
"int main(int argc, char *argv[])",
|
||||||
@ -4225,17 +4219,8 @@ static void dumpeasycode(struct Configurable *config)
|
|||||||
int i;
|
int i;
|
||||||
const char *c;
|
const char *c;
|
||||||
|
|
||||||
for(i=0; (c = srchead[i]); i++) {
|
for(i=0; (c = srchead[i]); i++)
|
||||||
if(!memcmp((char *)c, "[m]", 3)) {
|
|
||||||
#if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS > 32)
|
|
||||||
fprintf(out, "#define _FILE_OFFSET_BITS %d "
|
|
||||||
"/* for pre libcurl 7.19.0 curl_off_t magic */\n",
|
|
||||||
_FILE_OFFSET_BITS);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
else
|
|
||||||
fprintf(out, "%s\n", c);
|
fprintf(out, "%s\n", c);
|
||||||
}
|
|
||||||
|
|
||||||
ptr = easycode;
|
ptr = easycode;
|
||||||
while(ptr) {
|
while(ptr) {
|
||||||
|
Loading…
Reference in New Issue
Block a user