Only in perl.orig/Curl_easy: Makefile
diff -r perl/Curl_easy/Makefile.PL perl.orig/Curl_easy/Makefile.PL
11c11
<     'DEFINE'	=> '-Wall',     # e.g., '-DHAVE_SOMETHING' 
---
>     'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
Only in perl.orig/Curl_easy: Makefile.am
Only in perl.orig/Curl_easy: Makefile.in
diff -r perl/Curl_easy/easy.xs perl.orig/Curl_easy/easy.xs
208c208
< 	RETVAL = Curl_setopt(curl, option, value);
---
> 	RETVAL = curl_setopt(curl, option, value);
213c213
< 	RETVAL = Curl_setopt(curl, option, value);
---
> 	RETVAL = curl_setopt(curl, option, value);
216c216
< 	RETVAL = Curl_setopt(curl, option, errbuf);
---
> 	RETVAL = curl_setopt(curl, option, errbuf);
227c227
< 	RETVAL = Curl_setopt(curl, option, value);
---
> 	RETVAL = curl_setopt(curl, option, value);
237c237
<     RETVAL = Curl_perform(curl);
---
>     RETVAL = curl_easy_perform(curl);
255c255
< 	    RETVAL = Curl_getinfo(curl, option, &value);
---
> 	    RETVAL = curl_getinfo(curl, option, &value);
261c261
< 	    RETVAL = Curl_getinfo(curl, option, &value);
---
> 	    RETVAL = curl_getinfo(curl, option, &value);
267c267
< 	    RETVAL = Curl_getinfo(curl, option, &value);
---
> 	    RETVAL = curl_getinfo(curl, option, &value);
diff -r perl/README perl.orig/README
14,17c14
< subdirectory. Using the Curl::easy module is just straightforward and
< works much like using libcurl in a C programm, so please refer to the
< documentation of libcurl. Have a look at test.pl to get an idea of how
< to start.
---
> subdirectory.
18a16,17
>  Unfortunately, we don't have any examples nor any documentation for it at
> this point.

