]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/slrn/slrn-0.9.8.0/m4.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / slrn / slrn-0.9.8.0 / m4.patch
1
2 #
3 # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4 #
5
6 --- /dev/null   2003-09-23 18:19:32.000000000 -0400
7 +++ slrn-0.9.8.0/autoconf/ulonglong.m4  2004-03-05 16:39:20.000000000 -0500
8 @@ -0,0 +1,23 @@
9 +# ulonglong.m4 serial 2 (fileutils-4.0.32, gettext-0.10.40)
10 +dnl Copyright (C) 1999-2002 Free Software Foundation, Inc.
11 +dnl This file is free software, distributed under the terms of the GNU
12 +dnl General Public License.  As a special exception to the GNU General
13 +dnl Public License, this file may be distributed as part of a program
14 +dnl that contains a configuration script generated by Autoconf, under
15 +dnl the same distribution terms as the rest of that program.
16 +
17 +dnl From Paul Eggert.
18 +
19 +AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG],
20 +[
21 +  AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long,
22 +  [AC_TRY_LINK([unsigned long long ull = 1; int i = 63;],
23 +    [unsigned long long ullmax = (unsigned long long) -1;
24 +     return ull << i | ull >> i | ullmax / ull | ullmax % ull;],
25 +    ac_cv_type_unsigned_long_long=yes,
26 +    ac_cv_type_unsigned_long_long=no)])
27 +  if test $ac_cv_type_unsigned_long_long = yes; then
28 +    AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1,
29 +      [Define if you have the unsigned long long type.])
30 +  fi
31 +])