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

« back to all changes in this revision

Viewing changes to m4/asm-underscore.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
# asm-underscore.m4 serial 1
 
2
dnl Copyright (C) 2010-2011 Free Software Foundation, Inc.
 
3
dnl This file is free software; the Free Software Foundation
 
4
dnl gives unlimited permission to copy and/or distribute it,
 
5
dnl with or without modifications, as long as this notice is preserved.
 
6
 
 
7
dnl From Bruno Haible. Based on as-underscore.m4 in GNU clisp.
 
8
 
 
9
# gl_ASM_SYMBOL_PREFIX
 
10
# Tests for the prefix of C symbols at the assembly language level and the
 
11
# linker level. This prefix is either an underscore or empty. Defines the
 
12
# C macro USER_LABEL_PREFIX to this prefix, and sets ASM_SYMBOL_PREFIX to
 
13
# a stringified variant of this prefix.
 
14
 
 
15
AC_DEFUN([gl_ASM_SYMBOL_PREFIX],
 
16
[
 
17
  dnl We don't use GCC's __USER_LABEL_PREFIX__ here, because
 
18
  dnl 1. It works only for GCC.
 
19
  dnl 2. It is incorrectly defined on some platforms, in some GCC versions.
 
20
  AC_CACHE_CHECK(
 
21
    [whether C symbols are prefixed with underscore at the linker level],
 
22
    [gl_cv_prog_as_underscore],
 
23
    [cat > conftest.c <<EOF
 
24
#ifdef __cplusplus
 
25
extern "C" int foo (void);
 
26
#endif
 
27
int foo(void) { return 0; }
 
28
EOF
 
29
     # Look for the assembly language name in the .s file.
 
30
     AC_TRY_COMMAND(${CC-cc} $CFLAGS $CPPFLAGS -S conftest.c) >/dev/null 2>&1
 
31
     if grep _foo conftest.s >/dev/null ; then
 
32
       gl_cv_prog_as_underscore=yes
 
33
     else
 
34
       gl_cv_prog_as_underscore=no
 
35
     fi
 
36
     rm -f conftest*
 
37
    ])
 
38
  if test $gl_cv_prog_as_underscore = yes; then
 
39
    USER_LABEL_PREFIX=_
 
40
  else
 
41
    USER_LABEL_PREFIX=
 
42
  fi
 
43
  AC_DEFINE_UNQUOTED([USER_LABEL_PREFIX], [$USER_LABEL_PREFIX],
 
44
    [Define to the prefix of C symbols at the assembler and linker level,
 
45
     either an underscore or empty.])
 
46
  ASM_SYMBOL_PREFIX='"'${USER_LABEL_PREFIX}'"'
 
47
  AC_SUBST([ASM_SYMBOL_PREFIX])
 
48
])