~ubuntu-branches/debian/squeeze/libgpg-error/squeeze

« back to all changes in this revision

Viewing changes to m4/ulonglong.m4

  • Committer: Bazaar Package Importer
  • Author(s): Jose Carlos Garcia Sogo
  • Date: 2006-09-24 16:33:03 UTC
  • mfrom: (1.2.1 upstream) (2.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20060924163303-2secsa8lts3hhhct
Tags: 1.4-1
* New upstream version.
* Bumped Standards-Version to 3.7.2. No changes needed.
* Use {binary:Version} field in libgpg-error-dev dependecy field. (Closes: #384376)
* Fix typo in upstream URL at debian/copyright file (Closes: #387735)
* debian/patches: Disable m4_macros and 10_relibtoolize patches.
  Upstream uses now a quite current copy of gettext.
* Update FSF address in debian/copyright file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# ulonglong.m4 serial 2 (fileutils-4.0.32, gettext-0.10.40)
2
 
dnl Copyright (C) 1999-2002 Free Software Foundation, Inc.
3
 
dnl This file is free software, distributed under the terms of the GNU
4
 
dnl General Public License.  As a special exception to the GNU General
5
 
dnl Public License, this file may be distributed as part of a program
6
 
dnl that contains a configuration script generated by Autoconf, under
7
 
dnl the same distribution terms as the rest of that program.
 
1
# ulonglong.m4 serial 4
 
2
dnl Copyright (C) 1999-2004 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.
8
6
 
9
7
dnl From Paul Eggert.
10
8
 
11
 
AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG],
 
9
# Define HAVE_UNSIGNED_LONG_LONG if 'unsigned long long' works.
 
10
 
 
11
AC_DEFUN([gl_AC_TYPE_UNSIGNED_LONG_LONG],
12
12
[
13
13
  AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long,
14
 
  [AC_TRY_LINK([unsigned long long ull = 1; int i = 63;],
 
14
  [AC_TRY_LINK([unsigned long long ull = 1ULL; int i = 63;],
15
15
    [unsigned long long ullmax = (unsigned long long) -1;
16
16
     return ull << i | ull >> i | ullmax / ull | ullmax % ull;],
17
17
    ac_cv_type_unsigned_long_long=yes,
18
18
    ac_cv_type_unsigned_long_long=no)])
19
19
  if test $ac_cv_type_unsigned_long_long = yes; then
20
20
    AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1,
21
 
      [Define if you have the unsigned long long type.])
 
21
      [Define if you have the 'unsigned long long' type.])
22
22
  fi
23
23
])