~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to include/curl/curlbuild.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-05-07 12:16:37 UTC
  • mfrom: (3.4.37 sid)
  • Revision ID: package-import@ubuntu.com-20130507121637-9t3i98qgsyr9dw5d
Tags: 7.30.0-1ubuntu1
* Resynchronize on Debian. Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
* Add warning to debian/patches/series.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
11
11
 *
12
12
 * This software is licensed as described in the file COPYING, which
13
13
 * you should have received as part of this distribution. The terms
527
527
/* ===================================== */
528
528
 
529
529
#elif defined(__GNUC__)
530
 
#  if defined(__i386__) || defined(__ppc__)
 
530
#  if defined(__ILP32__) || \
 
531
      defined(__i386__) || defined(__ppc__) || defined(__arm__)
531
532
#    define CURL_SIZEOF_LONG           4
532
533
#    define CURL_TYPEOF_CURL_OFF_T     long long
533
534
#    define CURL_FORMAT_CURL_OFF_T     "lld"
536
537
#    define CURL_SIZEOF_CURL_OFF_T     8
537
538
#    define CURL_SUFFIX_CURL_OFF_T     LL
538
539
#    define CURL_SUFFIX_CURL_OFF_TU    ULL
539
 
#  elif defined(__x86_64__) || defined(__ppc64__)
 
540
#  elif defined(__LP64__) || \
 
541
        defined(__x86_64__) || defined(__ppc64__)
540
542
#    define CURL_SIZEOF_LONG           8
541
543
#    define CURL_TYPEOF_CURL_OFF_T     long
542
544
#    define CURL_FORMAT_CURL_OFF_T     "ld"