patches/libelf/0.8.10/100-fix-64-bit-detection.patch
author Remy Bohmer <linux@bohmer.net>
Sun Jul 11 22:23:34 2010 +0200 (2010-07-11)
changeset 2021 3e52a1510f87
permissions -rw-r--r--
debug/gdb: Fix compilation for Mingw hosts

GDB requires PDcurses instead of ncurses while running on Windows.
So, do not always compile ncurses in case GDB needs to build.

PDcurses is provided by an earlier build step and is not described in
this file.

Signed-off-by: Remy Bohmer <linux@bohmer.net>
[yann.morin.1998@anciense.nib.fr: we already have a way to detect ncurses usage]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.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