diff options
| author | Yang Tse <yangsita@gmail.com> | 2009-04-08 01:25:34 +0000 | 
|---|---|---|
| committer | Yang Tse <yangsita@gmail.com> | 2009-04-08 01:25:34 +0000 | 
| commit | ece891d6dbe4abd7912c7bc6fb0f1bc71e7b67e1 (patch) | |
| tree | fe6c2cd0ac96e3714fb0d06f355f02487790c6a3 | |
| parent | 702355da477e02993a91ed055240eb86ea0c91e7 (diff) | |
Sun compilers specific preprocessor block removed from curlbuild.h.dist
| -rw-r--r-- | CHANGES | 8 | ||||
| -rw-r--r-- | RELEASE-NOTES | 2 | ||||
| -rw-r--r-- | include/curl/curlbuild.h.dist | 34 | 
3 files changed, 9 insertions, 35 deletions
| @@ -7,6 +7,14 @@                                    Changelog +Yang Tse (8 Apr 2009) +- Removed Sun compilers preprocessor block from curlbuild.h.dist, this also +  removes it from the curlbuild.h file originally distributed by the cURL +  project as this file is intended for systems not capable of running the +  configure script.  For those who have been building curl out of the source +  code curl distribution tarball provided by curl.haxx.se the change implies +  nothing.  Previous change in this area committed 2 Apr becomes irrelevant. +  Daniel Stenberg (6 Apr 2009)  - I clarified in the docs that CURLOPT_SEEKFUNCTION should return 0 on success    and 1 on fatal errors. Previously it only mentioned non-zero on fatal diff --git a/RELEASE-NOTES b/RELEASE-NOTES index b3388b219..913b1e227 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -24,7 +24,7 @@ This release includes the following bugfixes:   o missing Curl_read() and write callback result checking in TELNET transfers   o more ciphers enabled in libcurl built to use NSS   o properly return an error code in curl_easy_recv - o fixed curl_off_t definition for non-configured builds with Sun compilers + o Sun compilers specific preprocessor block removed from curlbuild.h.dist  This release includes the following known bugs: diff --git a/include/curl/curlbuild.h.dist b/include/curl/curlbuild.h.dist index bc5950df5..faf0af6f6 100644 --- a/include/curl/curlbuild.h.dist +++ b/include/curl/curlbuild.h.dist @@ -439,40 +439,6 @@  #  endif  /* ===================================== */ -/*    SunPro Compilers                   */ -/* ===================================== */ - -#elif defined(__SUNPRO_C) || defined(__SUNPRO_CC) -#  if defined(_LP64) -#    define CURL_SIZEOF_LONG        8 -#    define CURL_TYPEOF_CURL_OFF_T  long -#    define CURL_FORMAT_CURL_OFF_T  "ld" -#    define CURL_FORMAT_CURL_OFF_TU "lu" -#    define CURL_FORMAT_OFF_T       "%ld" -#    define CURL_SIZEOF_CURL_OFF_T  8 -#    define CURL_SUFFIX_CURL_OFF_T  L -#    define CURL_SUFFIX_CURL_OFF_TU UL -#  elif defined(__STDC__) && (__STDC__ == 1) -#    define CURL_SIZEOF_LONG        4 -#    define CURL_TYPEOF_CURL_OFF_T  long -#    define CURL_FORMAT_CURL_OFF_T  "ld" -#    define CURL_FORMAT_CURL_OFF_TU "lu" -#    define CURL_FORMAT_OFF_T       "%ld" -#    define CURL_SIZEOF_CURL_OFF_T  4 -#    define CURL_SUFFIX_CURL_OFF_T  L -#    define CURL_SUFFIX_CURL_OFF_TU UL -#  else -#    define CURL_SIZEOF_LONG        4 -#    define CURL_TYPEOF_CURL_OFF_T  long long -#    define CURL_FORMAT_CURL_OFF_T  "lld" -#    define CURL_FORMAT_CURL_OFF_TU "llu" -#    define CURL_FORMAT_OFF_T       "%lld" -#    define CURL_SIZEOF_CURL_OFF_T  8 -#    define CURL_SUFFIX_CURL_OFF_T  LL -#    define CURL_SUFFIX_CURL_OFF_TU ULL -#  endif - -/* ===================================== */  /*    KEEP MSVC THE PENULTIMATE ENTRY    */  /* ===================================== */ | 
