Nicholas Clifton 2055b1
diff -rup ../binutils-2.20.51.0.2.orig/bfd/configure bfd/configure
Nicholas Clifton 2055b1
--- ../binutils-2.20.51.0.2.orig/bfd/configure	2009-10-12 11:45:05.000000000 +0100
Nicholas Clifton 2055b1
+++ bfd/configure	2009-10-12 11:45:13.000000000 +0100
Nicholas Clifton 2055b1
@@ -12694,11 +12694,13 @@ if test "x${ac_cv_sizeof_long}" = "x8"; 
Jan Kratochvil 4140ce
   BFD_HOST_64BIT_LONG=1
Jan Kratochvil 4140ce
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long"
Jan Kratochvil 4140ce
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long"
Jan Kratochvil 4140ce
-elif test "x${ac_cv_sizeof_long_long}" = "x8"; then
Jan Kratochvil 4140ce
+fi
Jan Kratochvil 4140ce
+if test "x${ac_cv_sizeof_long_long}" = "x8"; then
Jan Kratochvil 4140ce
   BFD_HOST_64BIT_LONG_LONG=1
Jan Kratochvil 4140ce
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long long"
Jan Kratochvil 4140ce
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long long"
Jan Kratochvil 4140ce
-  if test "x${ac_cv_sizeof_void_p}" = "x8"; then
Jan Kratochvil 4140ce
+  if test "x${ac_cv_sizeof_void_p}" = "x8" \
Jan Kratochvil 4140ce
+          -a "x${ac_cv_sizeof_long}" != "x8"; then
Jan Kratochvil 4140ce
     BFD_HOSTPTR_T="unsigned long long"
Jan Kratochvil 4140ce
   fi
Jan Kratochvil 4140ce
 fi
Nicholas Clifton 2055b1
diff -rup ../binutils-2.20.51.0.2.orig/bfd/configure.in bfd/configure.in
Nicholas Clifton 2055b1
--- ../binutils-2.20.51.0.2.orig/bfd/configure.in	2009-10-12 11:45:05.000000000 +0100
Nicholas Clifton 2055b1
+++ bfd/configure.in	2009-10-12 11:45:13.000000000 +0100
Nicholas Clifton 11c397
@@ -172,11 +172,13 @@ if test "x${ac_cv_sizeof_long}" = "x8"; 
Jan Kratochvil 4140ce
   BFD_HOST_64BIT_LONG=1
Jan Kratochvil 4140ce
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long"
Jan Kratochvil 4140ce
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long"
Jan Kratochvil 4140ce
-elif test "x${ac_cv_sizeof_long_long}" = "x8"; then
Jan Kratochvil 4140ce
+fi
Jan Kratochvil 4140ce
+if test "x${ac_cv_sizeof_long_long}" = "x8"; then
Jan Kratochvil 4140ce
   BFD_HOST_64BIT_LONG_LONG=1
Jan Kratochvil 4140ce
   test -n "${HOST_64BIT_TYPE}" || HOST_64BIT_TYPE="long long"
Jan Kratochvil 4140ce
   test -n "${HOST_U_64BIT_TYPE}" || HOST_U_64BIT_TYPE="unsigned long long"
Jan Kratochvil 4140ce
-  if test "x${ac_cv_sizeof_void_p}" = "x8"; then
Jan Kratochvil 4140ce
+  if test "x${ac_cv_sizeof_void_p}" = "x8" \
Jan Kratochvil 4140ce
+          -a "x${ac_cv_sizeof_long}" != "x8"; then
Jan Kratochvil 4140ce
     BFD_HOSTPTR_T="unsigned long long"
Jan Kratochvil 4140ce
   fi
Jan Kratochvil 4140ce
 fi
Nicholas Clifton 2055b1
diff -rup ../binutils-2.20.51.0.2.orig/bfd/configure.orig bfd/configure.orig
Nicholas Clifton 2055b1
--- ../binutils-2.20.51.0.2.orig/bfd/configure.orig	2009-10-12 11:45:05.000000000 +0100
Nicholas Clifton 2055b1
+++ bfd/configure.orig	2009-10-12 11:31:43.000000000 +0100
Nicholas Clifton 2055b1
@@ -10670,10 +10670,34 @@ fi
Nicholas Clifton 2055b1
   # before this can be enabled.
Nicholas Clifton 2055b1
   hardcode_into_libs=yes
Nicholas Clifton 2055b1
 
Nicholas Clifton 2055b1
+   # find out which ABI we are using
Nicholas Clifton 2055b1
+   libsuff=
Nicholas Clifton 2055b1
+   case "$host_cpu" in
Nicholas Clifton 2055b1
+   x86_64*|s390*|powerpc*|ppc*|sparc*)
Nicholas Clifton 2055b1
+     echo 'int i;' > conftest.$ac_ext
Nicholas Clifton 2055b1
+     if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
Nicholas Clifton 2055b1
+   (eval $ac_compile) 2>&5
Nicholas Clifton 2055b1
+   ac_status=$?
Nicholas Clifton 2055b1
+   echo "$as_me:$LINENO: \$? = $ac_status" >&5
Nicholas Clifton 2055b1
+   (exit $ac_status); }; then
Nicholas Clifton 2055b1
+       case `/usr/bin/file conftest.$ac_objext` in
Nicholas Clifton 2055b1
+       *64-bit*)
Nicholas Clifton 2055b1
+         libsuff=64
Nicholas Clifton 2055b1
+         if test x"$sys_lib_search_path_spec" = x"/lib /usr/lib /usr/local/lib"; then
Nicholas Clifton 2055b1
+           sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
Nicholas Clifton 2055b1
+         fi
Nicholas Clifton 2055b1
+         sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff}"
Nicholas Clifton 2055b1
+         ;;
Nicholas Clifton 2055b1
+       esac
Nicholas Clifton 2055b1
+     fi
Nicholas Clifton 2055b1
+     rm -rf conftest*
Nicholas Clifton 2055b1
+     ;;
Nicholas Clifton 2055b1
+   esac
Nicholas Clifton 2055b1
+ 
Nicholas Clifton 2055b1
   # Append ld.so.conf contents to the search path
Nicholas Clifton 2055b1
   if test -f /etc/ld.so.conf; then
Nicholas Clifton 2055b1
     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[	 ]*hwcap[	 ]/d;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
Nicholas Clifton 2055b1
-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
Nicholas Clifton 2055b1
+    sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
Nicholas Clifton 2055b1
   fi
Nicholas Clifton 2055b1
 
Nicholas Clifton 2055b1
   # We used to test for /lib/ld.so.1 and disable shared libraries on