~ubuntu-branches/ubuntu/natty/xmlrpc-c/natty

« back to all changes in this revision

Viewing changes to lib/curl_transport/curlversion.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-01-06 18:56:02 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110106185602-09og2x3suqlzbf6s
Tags: 1.16.32-0ubuntu1
* New upstream version (stable release). LP: #659591.
  - No unresolved symbols in the shared libraries. LP: #690779.
  - Builds with --no-add-needed and --as-needed.
* Rename shared library packages.
* Add symbols files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CURLVERSION_H_INCLUDED
 
2
#define CURLVERSION_H_INCLUDED
 
3
 
 
4
#define CMAJOR LIBCURL_VERSION_MAJOR
 
5
#define CMINOR LIBCURL_VERSION_MINOR
 
6
#if CMAJOR > 7 || (CMAJOR == 7 && CMINOR >= 10)
 
7
  #define HAVE_CURL_NOSIGNAL 1
 
8
#else
 
9
  #define HAVE_CURL_NOSIGNAL 0
 
10
#endif
 
11
#if CMAJOR > 7 || (CMAJOR == 7 && CMINOR >= 12)
 
12
  #define HAVE_CURL_STRERROR 1
 
13
#else
 
14
  #define HAVE_CURL_STRERROR 0
 
15
#endif
 
16
 
 
17
#undef CMAJOR
 
18
#undef CMINOR
 
19
 
 
20
#endif