diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8474fd5194..7d66d98fdf 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-23 14:25 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbcurl/hbcurl.c + ! Fixed compilation against libcurl 7.16.1. + ; Untested. + 2008-10-23 12:23 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/mtpl_vc.mak ! Fixed MSVC not rebuilding .prg files after changing them. diff --git a/harbour/contrib/hbcurl/hbcurl.c b/harbour/contrib/hbcurl/hbcurl.c index 92e210d438..9a34e3b09f 100644 --- a/harbour/contrib/hbcurl/hbcurl.c +++ b/harbour/contrib/hbcurl/hbcurl.c @@ -1067,9 +1067,11 @@ HB_FUNC( CURL_EASY_SETOPT ) case HB_CURLOPT_FTPSSLAUTH: res = curl_easy_setopt( hb_curl->curl, CURLOPT_FTPSSLAUTH, hb_parnl( 3 ) ); break; +#if LIBCURL_VERSION_NUM >= 0x071001 case HB_CURLOPT_FTP_SSL_CCC: res = curl_easy_setopt( hb_curl->curl, CURLOPT_FTP_SSL_CCC, hb_parnl( 3 ) ); break; +#endif #if LIBCURL_VERSION_NUM >= 0x070C03 case HB_CURLOPT_FTP_ACCOUNT: res = curl_easy_setopt( hb_curl->curl, CURLOPT_FTP_ACCOUNT, hb_curl_StrHash( hb_curl, hb_parc( 3 ) ) );