From cc48658564dad6cd57b7526ab1e98780145a473f Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 19 Nov 2003 08:21:34 +0000 Subject: [PATCH] cut off old crappy win32 comments and use the proper global_init instead also removed very old "require libcurl older than blablabla" --- docs/examples/postit2.c | 9 ++------- docs/examples/sepheaders.c | 5 ++--- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/docs/examples/postit2.c b/docs/examples/postit2.c index 9b7cda07e..a46f0a71b 100644 --- a/docs/examples/postit2.c +++ b/docs/examples/postit2.c @@ -21,9 +21,6 @@ * This exact source code has not been verified to work. */ -/* to make this work under windows, use the win32-functions from the - win32socket.c file as well */ - #include #include @@ -31,10 +28,6 @@ #include #include -#if LIBCURL_VERSION_NUM < 0x070900 -#error "curl_formadd() is not introduced until libcurl 7.9 and later" -#endif - int main(int argc, char *argv[]) { CURL *curl; @@ -45,6 +38,8 @@ int main(int argc, char *argv[]) struct curl_slist *headerlist=NULL; char buf[] = "Expect:"; + curl_global_init(CURL_GLOBAL_ALL); + /* Fill in the file upload field */ curl_formadd(&formpost, &lastptr, diff --git a/docs/examples/sepheaders.c b/docs/examples/sepheaders.c index 7168f8016..6e8735168 100644 --- a/docs/examples/sepheaders.c +++ b/docs/examples/sepheaders.c @@ -8,9 +8,6 @@ * $Id$ */ -/* to make this work under windows, use the win32-functions from the - win32socket.c file as well */ - #include #include #include @@ -33,6 +30,8 @@ int main(int argc, char **argv) char *bodyfilename = "body.out"; FILE *bodyfile; + curl_global_init(CURL_GLOBAL_ALL); + /* init the curl session */ curl_handle = curl_easy_init(); -- 2.40.0