patches/libelf/0.8.13/100-fix-64-bit-detection.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
parent 1562 fdf936326ccd
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
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