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

« back to all changes in this revision

Viewing changes to m4/fseeko.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
 
# fseeko.m4 serial 4
2
 
dnl Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
 
1
# fseeko.m4 serial 15
 
2
dnl Copyright (C) 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.
7
7
AC_DEFUN([gl_FUNC_FSEEKO],
8
8
[
9
9
  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
 
10
  AC_REQUIRE([gl_STDIN_LARGE_OFFSET])
10
11
  AC_REQUIRE([AC_PROG_CC])
11
 
  AC_REQUIRE([gl_STDIN_LARGE_OFFSET])
12
12
 
13
13
  dnl Persuade glibc <stdio.h> to declare fseeko().
14
14
  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
15
15
 
16
16
  AC_CACHE_CHECK([for fseeko], [gl_cv_func_fseeko],
17
17
    [
18
 
      AC_TRY_LINK([#include <stdio.h>], [fseeko (stdin, 0, 0);],
19
 
        [gl_cv_func_fseeko=yes], [gl_cv_func_fseeko=no])
 
18
      AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
 
19
]], [fseeko (stdin, 0, 0);])],
 
20
        [gl_cv_func_fseeko=yes], [gl_cv_func_fseeko=no])
20
21
    ])
 
22
 
 
23
  AC_CHECK_DECLS_ONCE([fseeko])
 
24
  if test $ac_cv_have_decl_fseeko = no; then
 
25
    HAVE_DECL_FSEEKO=0
 
26
  fi
 
27
 
21
28
  if test $gl_cv_func_fseeko = no; then
22
29
    HAVE_FSEEKO=0
23
 
    gl_REPLACE_FSEEKO
24
 
  elif test $gl_cv_var_stdin_large_offset = no; then
25
 
    gl_REPLACE_FSEEKO
 
30
  else
 
31
    if test $gl_cv_var_stdin_large_offset = no; then
 
32
      REPLACE_FSEEKO=1
 
33
    fi
 
34
    m4_ifdef([gl_FUNC_FFLUSH_STDIN], [
 
35
      gl_FUNC_FFLUSH_STDIN
 
36
      if test $gl_cv_func_fflush_stdin = no; then
 
37
        REPLACE_FSEEKO=1
 
38
      fi
 
39
    ])
26
40
  fi
27
41
])
28
42
 
29
 
AC_DEFUN([gl_REPLACE_FSEEKO],
30
 
[
31
 
  AC_LIBOBJ([fseeko])
32
 
  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
33
 
  REPLACE_FSEEKO=1
 
43
dnl Code shared by fseeko and ftello.  Determine if large files are supported,
 
44
dnl but stdin does not start as a large file by default.
 
45
AC_DEFUN([gl_STDIN_LARGE_OFFSET],
 
46
  [
 
47
    AC_CACHE_CHECK([whether stdin defaults to large file offsets],
 
48
      [gl_cv_var_stdin_large_offset],
 
49
      [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]],
 
50
[[#if defined __SL64 && defined __SCLE /* cygwin */
 
51
  /* Cygwin 1.5.24 and earlier fail to put stdin in 64-bit mode, making
 
52
     fseeko/ftello needlessly fail.  This bug was fixed in 1.5.25, and
 
53
     it is easier to do a version check than building a runtime test.  */
 
54
# include <cygwin/version.h>
 
55
# if CYGWIN_VERSION_DLL_COMBINED < CYGWIN_VERSION_DLL_MAKE_COMBINED (1005, 25)
 
56
  choke me
 
57
# endif
 
58
#endif]])],
 
59
        [gl_cv_var_stdin_large_offset=yes],
 
60
        [gl_cv_var_stdin_large_offset=no])])
34
61
])