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

« back to all changes in this revision

Viewing changes to m4/wint_t.m4

  • 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
 
# wint_t.m4 serial 4 (gettext-0.18)
2
 
dnl Copyright (C) 2003, 2007-2009 Free Software Foundation, Inc.
 
1
# wint_t.m4 serial 5 (gettext-0.18.2)
 
2
dnl Copyright (C) 2003, 2007-2011 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
5
5
dnl with or without modifications, as long as this notice is preserved.
11
11
AC_DEFUN([gt_TYPE_WINT_T],
12
12
[
13
13
  AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t],
14
 
    [AC_TRY_COMPILE([
 
14
    [AC_COMPILE_IFELSE(
 
15
       [AC_LANG_PROGRAM(
 
16
          [[
15
17
/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
16
18
   <wchar.h>.
17
19
   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
20
22
#include <stdio.h>
21
23
#include <time.h>
22
24
#include <wchar.h>
23
 
       wint_t foo = (wchar_t)'\0';], ,
24
 
       [gt_cv_c_wint_t=yes], [gt_cv_c_wint_t=no])])
 
25
            wint_t foo = (wchar_t)'\0';]],
 
26
          [[]])],
 
27
       [gt_cv_c_wint_t=yes],
 
28
       [gt_cv_c_wint_t=no])])
25
29
  if test $gt_cv_c_wint_t = yes; then
26
30
    AC_DEFINE([HAVE_WINT_T], [1], [Define if you have the 'wint_t' type.])
27
31
  fi