~ubuntu-branches/ubuntu/precise/wget/precise-proposed

« back to all changes in this revision

Viewing changes to src/build_info.c.in

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2011-10-19 00:00:09 UTC
  • mfrom: (2.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20111019000009-8p33w3wz4b1rdri0
Tags: 1.13-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Add wget-udeb to ship wget.gnu as alternative to busybox wget
    implementation.
  - Depend on libssl-dev 0.9.8k-7ubuntu4 (LP: #503339)
* Dropped changes, superseded in Debian:
  - Keep build dependencies in main:
    + debian/control: remove info2man build-dep
    + debian/patches/series: disable wget-infopod_generated_manpage
  - Mark wget Multi-Arch: foreign, so packages that aren't of the same arch
    can depend on it.
* Pass --with-ssl=openssl; we don't want to use gnutls, there's no udeb for
  it.
* Add a second build pass for the udeb, so we can build without libidn.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
ENABLE_DIGEST  digest
2
 
ENABLE_IPV6    ipv6
3
 
ENABLE_NLS     nls
4
 
ENABLE_NTLM    ntlm
5
 
ENABLE_OPIE    opie
6
 
HAVE_MD5
7
 
HAVE_SSL       https
8
 
HAVE_LIBGNUTLS gnutls
9
 
HAVE_LIBSSL    openssl
10
 
ENABLE_IRI     iri
11
 
 
12
 
#ifdef HAVE_MD5
13
 
#ifdef HAVE_BUILTIN_MD5
14
 
  "+md5/builtin",
15
 
#elif HAVE_OPENSSL_MD5
16
 
  "+md5/openssl",
17
 
#elif HAVE_SOLARIS_MD5
18
 
  "+md5/solaris",
19
 
#else
20
 
#error "md5 set, but no library found!",
21
 
#endif
22
 
#else
23
 
  "-md5",
24
 
#endif
 
1
digest          defined ENABLE_DIGEST
 
2
https           defined HAVE_SSL
 
3
ipv6            defined ENABLE_IPV6
 
4
iri             defined ENABLE_IRI
 
5
large-file      SIZEOF_OFF_T >= 8
 
6
 
 
7
nls             defined ENABLE_NLS
 
8
ntlm            defined ENABLE_NTLM
 
9
opie            defined ENABLE_OPIE
 
10
 
 
11
ssl choice:
 
12
    openssl     defined HAVE_LIBSSL
 
13
    gnutls      defined HAVE_LIBGNUTLS