Blame SOURCES/binutils-2.25-set-long-long.patch

0e5f8d
diff -up binutils-2.25.orig/bfd/configure.ac binutils-2.25/bfd/configure.ac
0e5f8d
--- binutils-2.25.orig/bfd/configure.ac	2014-12-24 10:34:45.590491143 +0000
0e5f8d
+++ binutils-2.25/bfd/configure.ac	2014-12-24 10:36:12.997981992 +0000
0e5f8d
@@ -183,11 +183,13 @@ if test "x${ac_cv_sizeof_long}" = "x8";
0e5f8d
   BFD_HOST_64BIT_LONG=1
0e5f8d
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long"
0e5f8d
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long"
0e5f8d
-elif test "x${ac_cv_sizeof_long_long}" = "x8"; then
0e5f8d
+fi
0e5f8d
+if test "x${ac_cv_sizeof_long_long}" = "x8"; then
0e5f8d
   BFD_HOST_64BIT_LONG_LONG=1
0e5f8d
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long long"
0e5f8d
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long long"
0e5f8d
-  if test "x${ac_cv_sizeof_void_p}" = "x8"; then
0e5f8d
+  if test "x${ac_cv_sizeof_void_p}" = "x8" \
0e5f8d
+          -a "x${ac_cv_sizeof_long}" != "x8"; then
0e5f8d
     BFD_HOSTPTR_T="unsigned long long"
0e5f8d
   fi
0e5f8d
 fi
0e5f8d
diff -up ../binutils-2.20.51.0.7.original/bfd/configure ./bfd/configure
0e5f8d
--- a/bfd/configure	2010-04-08 15:23:58.000000000 +0100
0e5f8d
+++ b/bfd/configure	2010-04-08 15:24:06.000000000 +0100
0e5f8d
@@ -12819,11 +12819,13 @@
0e5f8d
   BFD_HOST_64BIT_LONG=1
0e5f8d
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long"
0e5f8d
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long"
0e5f8d
-elif test "x${ac_cv_sizeof_long_long}" = "x8"; then
0e5f8d
+fi
0e5f8d
+if test "x${ac_cv_sizeof_long_long}" = "x8"; then
0e5f8d
   BFD_HOST_64BIT_LONG_LONG=1
0e5f8d
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long long"
0e5f8d
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long long"
0e5f8d
-  if test "x${ac_cv_sizeof_void_p}" = "x8"; then
0e5f8d
+  if test "x${ac_cv_sizeof_void_p}" = "x8" \
0e5f8d
+          -a "x${ac_cv_sizeof_long}" != "x8"; then
0e5f8d
     BFD_HOSTPTR_T="unsigned long long"
0e5f8d
   fi
0e5f8d
 fi