diff -Naur cmake-2.4.8/Utilities/cmcurl/curl/curl.h cmake-2.4.8_changed/Utilities/cmcurl/curl/curl.h --- cmake-2.4.8/Utilities/cmcurl/curl/curl.h 2008-01-21 19:59:57.000000000 +0100 +++ cmake-2.4.8_changed/Utilities/cmcurl/curl/curl.h 2008-03-25 16:41:37.000000000 +0100 @@ -1315,7 +1315,7 @@ * into the equivalent human readable error string. This is useful * for printing meaningful error messages. */ -const char *curl_easy_strerror(CURLcode); +char *curl_easy_strerror(CURLcode); /* * NAME curl_share_strerror() @@ -1326,7 +1326,7 @@ * into the equivalent human readable error string. This is useful * for printing meaningful error messages. */ -const char *curl_share_strerror(CURLSHcode); +char *curl_share_strerror(CURLSHcode); #ifdef __cplusplus } diff -Naur cmake-2.4.8/Utilities/cmcurl/curl/multi.h cmake-2.4.8_changed/Utilities/cmcurl/curl/multi.h --- cmake-2.4.8/Utilities/cmcurl/curl/multi.h 2008-01-21 19:59:57.000000000 +0100 +++ cmake-2.4.8_changed/Utilities/cmcurl/curl/multi.h 2008-03-25 16:40:56.000000000 +0100 @@ -212,7 +212,7 @@ * into the equivalent human readable error string. This is useful * for printing meaningful error messages. */ -const char *curl_multi_strerror(CURLMcode); +char *curl_multi_strerror(CURLMcode); #ifdef __cplusplus } /* end of extern "C" */ diff -Naur cmake-2.4.8/Utilities/cmcurl/strerror.c cmake-2.4.8_changed/Utilities/cmcurl/strerror.c --- cmake-2.4.8/Utilities/cmcurl/strerror.c 2008-01-21 19:59:58.000000000 +0100 +++ cmake-2.4.8_changed/Utilities/cmcurl/strerror.c 2008-03-25 16:41:17.000000000 +0100 @@ -41,7 +41,7 @@ #endif #endif -const char * +char * curl_easy_strerror(CURLcode error) { switch (error) { @@ -250,7 +250,7 @@ return "unknown error"; } -const char * +char * curl_multi_strerror(CURLMcode error) { switch (error) { @@ -279,7 +279,7 @@ return "unknown error"; } -const char * +char * curl_share_strerror(CURLSHcode error) { switch (error) {