patches/libelf/0.8.12/100-fix-64-bit-detection.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 17 23:06:02 2010 +0100 (2010-01-17)
changeset 1740 c57458bb354d
parent 1439 2fbb4aea2a88
permissions -rw-r--r--
configure: do not require hg when configuring in an hg clone

When configuring in an hg clone, we need hg to compute the version string.
It can happen that users do not have Mercurial (eg. if they got a snapshot
rather that they did a full clone). In this case, we can still run, of
course, so simply fill the version string with a sufficiently explicit
value, that does not require hg. The date is a good candidate.
yann@968
     1
diff -dur libelf-0.8.10.orig/configure libelf-0.8.10/configure
yann@968
     2
--- libelf-0.8.10.orig/configure	2007-09-07 14:08:06.000000000 +0200
yann@968
     3
+++ libelf-0.8.10/configure	2008-10-23 22:43:19.000000000 +0200
yann@968
     4
@@ -1595,7 +1595,7 @@
yann@968
     5
   echo $ac_n "(cached) $ac_c" 1>&6
yann@968
     6
 else
yann@968
     7
   if test "$cross_compiling" = yes; then
yann@968
     8
-  ac_cv_sizeof_long_long=0
yann@968
     9
+  ac_cv_sizeof_long_long=8
yann@968
    10
 else
yann@968
    11
   cat > conftest.$ac_ext <<EOF
yann@968
    12
 #line 1602 "configure"
yann@968
    13
diff -dur libelf-0.8.10.orig/configure.in libelf-0.8.10/configure.in
yann@968
    14
--- libelf-0.8.10.orig/configure.in	2007-09-07 14:07:59.000000000 +0200
yann@968
    15
+++ libelf-0.8.10/configure.in	2008-10-23 22:43:10.000000000 +0200
yann@968
    16
@@ -90,7 +90,7 @@
yann@968
    17
 AC_CHECK_SIZEOF(short,2)
yann@968
    18
 AC_CHECK_SIZEOF(int,4)
yann@968
    19
 AC_CHECK_SIZEOF(long,4)
yann@968
    20
-AC_CHECK_SIZEOF(long long,0)
yann@968
    21
+AC_CHECK_SIZEOF(long long,8)
yann@968
    22
 # Windows port
yann@968
    23
 AC_CHECK_SIZEOF(__int64, 0)
yann@968
    24