summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2024-02-16 11:02:39 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-02-17 18:19:19 +0000
commit53dd45d573fd8367fb711c25e2fa8e4cdda8b046 (patch)
tree538c8765da6245258f72ec46ed2808ee73dbf446
parent3b9dbfb5c6f9b51c747720d83ea8cb55e0615688 (diff)
downloadpoky-53dd45d573fd8367fb711c25e2fa8e4cdda8b046.tar.gz
binutils: Update to tip of 2.42 release branch
Brings following fixes. * 553c7f61b74 x86: Display -msse-check= default as none * 4f7d1d2d5ec PowerPC: Add support for Power11 options * 3c1f1c35784 x86-64: Add R_X86_64_CODE_6_GOTTPOFF * c426c8e307a x86/APX: VROUND{P,S}{S,D} encodings require AVX512{F,VL} * 78f9e9faaa4 PR31208, strip can break ELF alignment requirements * e19278f72bd PR 31283 windmc: Parse input correctly on big endian hosts * b76b8983116 Link x86-64 mark-plt-1.so with --no-as-needed * e92e2d654bf LoongArch: gas: Fix the types of symbols referred with %le_*_r in the symtab (From OE-Core rev: 1e24197070abbeabfca1883975b9996f29898745) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/binutils/binutils-2.42.inc2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0006-warn-for-uses-of-system-directories-when-cross-linki.patch4
-rw-r--r--meta/recipes-devtools/binutils/binutils/0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0008-Use-libtool-2.4.patch158
-rw-r--r--meta/recipes-devtools/binutils/binutils/0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0010-sync-with-OE-libtool-changes.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0011-Check-for-clang-before-checking-gcc-version.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch2
-rw-r--r--meta/recipes-devtools/binutils/binutils/0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch2
15 files changed, 94 insertions, 94 deletions
diff --git a/meta/recipes-devtools/binutils/binutils-2.42.inc b/meta/recipes-devtools/binutils/binutils-2.42.inc
index f48a1eb249..b6c275af46 100644
--- a/meta/recipes-devtools/binutils/binutils-2.42.inc
+++ b/meta/recipes-devtools/binutils/binutils-2.42.inc
@@ -18,7 +18,7 @@ SRCBRANCH ?= "binutils-2_42-branch"
18 18
19UPSTREAM_CHECK_GITTAGREGEX = "binutils-(?P<pver>\d+_(\d_?)*)" 19UPSTREAM_CHECK_GITTAGREGEX = "binutils-(?P<pver>\d+_(\d_?)*)"
20 20
21SRCREV ?= "42cde237366398f6e318232f4ce080bef42f0371" 21SRCREV ?= "553c7f61b74badf91df484450944675efd9cd485"
22BINUTILS_GIT_URI ?= "git://sourceware.org/git/binutils-gdb.git;branch=${SRCBRANCH};protocol=https" 22BINUTILS_GIT_URI ?= "git://sourceware.org/git/binutils-gdb.git;branch=${SRCBRANCH};protocol=https"
23SRC_URI = "\ 23SRC_URI = "\
24 ${BINUTILS_GIT_URI} \ 24 ${BINUTILS_GIT_URI} \
diff --git a/meta/recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch b/meta/recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch
index 148c9a29db..4ef11c56e7 100644
--- a/meta/recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch
+++ b/meta/recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch
@@ -1,4 +1,4 @@
1From 07237f83e4bfefab6473ed7c7b601d9d23b11edd Mon Sep 17 00:00:00 2001 1From 089ee95b342e79af09258b45c888a13b35fadf26 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 2 Mar 2015 01:58:54 +0000 3Date: Mon, 2 Mar 2015 01:58:54 +0000
4Subject: [PATCH] binutils-crosssdk: Generate relocatable SDKs 4Subject: [PATCH] binutils-crosssdk: Generate relocatable SDKs
diff --git a/meta/recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch b/meta/recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch
index bea1be9e83..1652473bcb 100644
--- a/meta/recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch
+++ b/meta/recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch
@@ -1,4 +1,4 @@
1From 4988a5a42289e43ab0fbd87793f293e263dc3dc1 Mon Sep 17 00:00:00 2001 1From 6fae7afeb713a60755e17443964e46190bb97ede Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 6 Mar 2017 23:37:05 -0800 3Date: Mon, 6 Mar 2017 23:37:05 -0800
4Subject: [PATCH] binutils-cross: Do not generate linker script directories 4Subject: [PATCH] binutils-cross: Do not generate linker script directories
diff --git a/meta/recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch b/meta/recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch
index 6f23abc250..f45690ed68 100644
--- a/meta/recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch
+++ b/meta/recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch
@@ -1,4 +1,4 @@
1From a0047134327e312a22f798bd328becf4053a6973 Mon Sep 17 00:00:00 2001 1From 1fe9aa3f25e09281cb018b29081db4cc44bdc01f Mon Sep 17 00:00:00 2001
2From: Richard Purdie <richard.purdie@linuxfoundation.org> 2From: Richard Purdie <richard.purdie@linuxfoundation.org>
3Date: Wed, 19 Feb 2020 09:51:16 -0800 3Date: Wed, 19 Feb 2020 09:51:16 -0800
4Subject: [PATCH] binutils-nativesdk: Search for alternative ld.so.conf in SDK 4Subject: [PATCH] binutils-nativesdk: Search for alternative ld.so.conf in SDK
diff --git a/meta/recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch b/meta/recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch
index b2e9ef1ff8..ab12c145ea 100644
--- a/meta/recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch
+++ b/meta/recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch
@@ -1,4 +1,4 @@
1From 1647f124bf0b48ca90189ecbd9ddd4b2c348ce03 Mon Sep 17 00:00:00 2001 1From 780109902b00652dfdc080607c614f210e96ae9b Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 2 Mar 2015 01:09:58 +0000 3Date: Mon, 2 Mar 2015 01:09:58 +0000
4Subject: [PATCH] Point scripts location to libdir 4Subject: [PATCH] Point scripts location to libdir
diff --git a/meta/recipes-devtools/binutils/binutils/0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch b/meta/recipes-devtools/binutils/binutils/0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch
index fbb4418e56..f7c3987542 100644
--- a/meta/recipes-devtools/binutils/binutils/0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch
+++ b/meta/recipes-devtools/binutils/binutils/0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch
@@ -1,4 +1,4 @@
1From 1e09d056a802c0d12bdf31aceead3725b69bd626 Mon Sep 17 00:00:00 2001 1From c8cca8d2364c9f233d6e771136a4d4ff7f405c21 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 2 Mar 2015 01:39:01 +0000 3Date: Mon, 2 Mar 2015 01:39:01 +0000
4Subject: [PATCH] don't let the distro compiler point to the wrong installation 4Subject: [PATCH] don't let the distro compiler point to the wrong installation
diff --git a/meta/recipes-devtools/binutils/binutils/0006-warn-for-uses-of-system-directories-when-cross-linki.patch b/meta/recipes-devtools/binutils/binutils/0006-warn-for-uses-of-system-directories-when-cross-linki.patch
index 1dcea9fe28..bf6a1a3961 100644
--- a/meta/recipes-devtools/binutils/binutils/0006-warn-for-uses-of-system-directories-when-cross-linki.patch
+++ b/meta/recipes-devtools/binutils/binutils/0006-warn-for-uses-of-system-directories-when-cross-linki.patch
@@ -1,4 +1,4 @@
1From 7a6074edd927273ae6924dc676ca2fdf127ce542 Mon Sep 17 00:00:00 2001 1From a92c46e3703d038d7d810bdc91e8540ad9d9150a Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 15 Jan 2016 06:31:09 +0000 3Date: Fri, 15 Jan 2016 06:31:09 +0000
4Subject: [PATCH] warn for uses of system directories when cross linking 4Subject: [PATCH] warn for uses of system directories when cross linking
@@ -77,7 +77,7 @@ index 52d62f06ff0..b5944e7ba55 100644
77 #undef EXTRA_SHLIB_EXTENSION 77 #undef EXTRA_SHLIB_EXTENSION
78 78
79diff --git a/ld/configure b/ld/configure 79diff --git a/ld/configure b/ld/configure
80index add770f883c..867f3f62c88 100755 80index 6f8a05c3b6c..98a76d6da7f 100755
81--- a/ld/configure 81--- a/ld/configure
82+++ b/ld/configure 82+++ b/ld/configure
83@@ -844,6 +844,7 @@ with_lib_path 83@@ -844,6 +844,7 @@ with_lib_path
diff --git a/meta/recipes-devtools/binutils/binutils/0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch b/meta/recipes-devtools/binutils/binutils/0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch
index 7bf4ecabe1..f9fa0d4f78 100644
--- a/meta/recipes-devtools/binutils/binutils/0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch
+++ b/meta/recipes-devtools/binutils/binutils/0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch
@@ -1,4 +1,4 @@
1From 9784134b2670b284fb4d31360964a14d1e9a070d Mon Sep 17 00:00:00 2001 1From d35fd95eee9930ab41d9ad637eacb35aa9fe6f44 Mon Sep 17 00:00:00 2001
2From: Zhenhua Luo <zhenhua.luo@nxp.com> 2From: Zhenhua Luo <zhenhua.luo@nxp.com>
3Date: Sat, 11 Jun 2016 22:08:29 -0500 3Date: Sat, 11 Jun 2016 22:08:29 -0500
4Subject: [PATCH] fix the incorrect assembling for ppc wait mnemonic 4Subject: [PATCH] fix the incorrect assembling for ppc wait mnemonic
diff --git a/meta/recipes-devtools/binutils/binutils/0008-Use-libtool-2.4.patch b/meta/recipes-devtools/binutils/binutils/0008-Use-libtool-2.4.patch
index ebaa3c55b5..8f74c639d5 100644
--- a/meta/recipes-devtools/binutils/binutils/0008-Use-libtool-2.4.patch
+++ b/meta/recipes-devtools/binutils/binutils/0008-Use-libtool-2.4.patch
@@ -1,4 +1,4 @@
1From 952a0e386cb925190561ad6b33a2dedacec1056b Mon Sep 17 00:00:00 2001 1From da089ddacb6506f406acd8939389183a4356ebf0 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 14 Feb 2016 17:04:07 +0000 3Date: Sun, 14 Feb 2016 17:04:07 +0000
4Subject: [PATCH] Use libtool 2.4 4Subject: [PATCH] Use libtool 2.4
@@ -75,7 +75,7 @@ index faaa0c424b8..5371e093163 100644
75 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 75 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
76 all_backends = @all_backends@ 76 all_backends = @all_backends@
77diff --git a/bfd/configure b/bfd/configure 77diff --git a/bfd/configure b/bfd/configure
78index 0a6e96c5b3b..970732f338a 100755 78index acbac2f364a..a53a9d52719 100755
79--- a/bfd/configure 79--- a/bfd/configure
80+++ b/bfd/configure 80+++ b/bfd/configure
81@@ -712,6 +712,9 @@ OTOOL 81@@ -712,6 +712,9 @@ OTOOL
@@ -2037,7 +2037,7 @@ index 842a6d99b54..037cccde038 100644
2037 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 2037 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
2038 am__include = @am__include@ 2038 am__include = @am__include@
2039diff --git a/binutils/configure b/binutils/configure 2039diff --git a/binutils/configure b/binutils/configure
2040index 6f08b6bdcde..03d922de70e 100755 2040index a1092735311..f3bdee98f3f 100755
2041--- a/binutils/configure 2041--- a/binutils/configure
2042+++ b/binutils/configure 2042+++ b/binutils/configure
2043@@ -704,8 +704,11 @@ OTOOL 2043@@ -704,8 +704,11 @@ OTOOL
@@ -2069,7 +2069,7 @@ index 6f08b6bdcde..03d922de70e 100755
2069 --with-debuginfod Enable debuginfo lookups with debuginfod 2069 --with-debuginfod Enable debuginfo lookups with debuginfod
2070 (auto/yes/no) 2070 (auto/yes/no)
2071 --with-gnu-ld assume the C compiler uses GNU ld default=no 2071 --with-gnu-ld assume the C compiler uses GNU ld default=no
2072@@ -4733,8 +4739,8 @@ esac 2072@@ -4958,8 +4964,8 @@ esac
2073 2073
2074 2074
2075 2075
@@ -2080,7 +2080,7 @@ index 6f08b6bdcde..03d922de70e 100755
2080 2080
2081 2081
2082 2082
2083@@ -4774,7 +4780,7 @@ ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO 2083@@ -4999,7 +5005,7 @@ ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
2084 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 2084 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5
2085 $as_echo_n "checking how to print strings... " >&6; } 2085 $as_echo_n "checking how to print strings... " >&6; }
2086 # Test print first, because it will be a builtin if present. 2086 # Test print first, because it will be a builtin if present.
@@ -2089,7 +2089,7 @@ index 6f08b6bdcde..03d922de70e 100755
2089 test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then 2089 test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
2090 ECHO='print -r --' 2090 ECHO='print -r --'
2091 elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then 2091 elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
2092@@ -5467,8 +5473,8 @@ $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; 2092@@ -5692,8 +5698,8 @@ $as_echo_n "checking whether the shell understands some XSI constructs... " >&6;
2093 # Try some XSI features 2093 # Try some XSI features
2094 xsi_shell=no 2094 xsi_shell=no
2095 ( _lt_dummy="a/b/c" 2095 ( _lt_dummy="a/b/c"
@@ -2100,7 +2100,7 @@ index 6f08b6bdcde..03d922de70e 100755
2100 && eval 'test $(( 1 + 1 )) -eq 2 \ 2100 && eval 'test $(( 1 + 1 )) -eq 2 \
2101 && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ 2101 && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
2102 && xsi_shell=yes 2102 && xsi_shell=yes
2103@@ -5517,6 +5523,80 @@ esac 2103@@ -5742,6 +5748,80 @@ esac
2104 2104
2105 2105
2106 2106
@@ -2181,7 +2181,7 @@ index 6f08b6bdcde..03d922de70e 100755
2181 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 2181 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
2182 $as_echo_n "checking for $LD option to reload object files... " >&6; } 2182 $as_echo_n "checking for $LD option to reload object files... " >&6; }
2183 if ${lt_cv_ld_reload_flag+:} false; then : 2183 if ${lt_cv_ld_reload_flag+:} false; then :
2184@@ -5533,6 +5613,11 @@ case $reload_flag in 2184@@ -5758,6 +5838,11 @@ case $reload_flag in
2185 esac 2185 esac
2186 reload_cmds='$LD$reload_flag -o $output$reload_objs' 2186 reload_cmds='$LD$reload_flag -o $output$reload_objs'
2187 case $host_os in 2187 case $host_os in
@@ -2193,7 +2193,7 @@ index 6f08b6bdcde..03d922de70e 100755
2193 darwin*) 2193 darwin*)
2194 if test "$GCC" = yes; then 2194 if test "$GCC" = yes; then
2195 reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' 2195 reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
2196@@ -5701,7 +5786,8 @@ mingw* | pw32*) 2196@@ -5926,7 +6011,8 @@ mingw* | pw32*)
2197 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' 2197 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
2198 lt_cv_file_magic_cmd='func_win32_libid' 2198 lt_cv_file_magic_cmd='func_win32_libid'
2199 else 2199 else
@@ -2203,7 +2203,7 @@ index 6f08b6bdcde..03d922de70e 100755
2203 lt_cv_file_magic_cmd='$OBJDUMP -f' 2203 lt_cv_file_magic_cmd='$OBJDUMP -f'
2204 fi 2204 fi
2205 ;; 2205 ;;
2206@@ -5860,6 +5946,21 @@ esac 2206@@ -6085,6 +6171,21 @@ esac
2207 fi 2207 fi
2208 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 2208 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5
2209 $as_echo "$lt_cv_deplibs_check_method" >&6; } 2209 $as_echo "$lt_cv_deplibs_check_method" >&6; }
@@ -2225,7 +2225,7 @@ index 6f08b6bdcde..03d922de70e 100755
2225 file_magic_cmd=$lt_cv_file_magic_cmd 2225 file_magic_cmd=$lt_cv_file_magic_cmd
2226 deplibs_check_method=$lt_cv_deplibs_check_method 2226 deplibs_check_method=$lt_cv_deplibs_check_method
2227 test -z "$deplibs_check_method" && deplibs_check_method=unknown 2227 test -z "$deplibs_check_method" && deplibs_check_method=unknown
2228@@ -5875,6 +5976,157 @@ test -z "$deplibs_check_method" && deplibs_check_method=unknown 2228@@ -6100,6 +6201,157 @@ test -z "$deplibs_check_method" && deplibs_check_method=unknown
2229 2229
2230 2230
2231 2231
@@ -2383,7 +2383,7 @@ index 6f08b6bdcde..03d922de70e 100755
2383 plugin_option= 2383 plugin_option=
2384 plugin_names="liblto_plugin.so liblto_plugin-0.dll cyglto_plugin-0.dll" 2384 plugin_names="liblto_plugin.so liblto_plugin-0.dll cyglto_plugin-0.dll"
2385 for plugin in $plugin_names; do 2385 for plugin in $plugin_names; do
2386@@ -5889,8 +6141,10 @@ for plugin in $plugin_names; do 2386@@ -6114,8 +6366,10 @@ for plugin in $plugin_names; do
2387 done 2387 done
2388 2388
2389 if test -n "$ac_tool_prefix"; then 2389 if test -n "$ac_tool_prefix"; then
@@ -2396,7 +2396,7 @@ index 6f08b6bdcde..03d922de70e 100755
2396 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2396 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2397 $as_echo_n "checking for $ac_word... " >&6; } 2397 $as_echo_n "checking for $ac_word... " >&6; }
2398 if ${ac_cv_prog_AR+:} false; then : 2398 if ${ac_cv_prog_AR+:} false; then :
2399@@ -5906,7 +6160,7 @@ do 2399@@ -6131,7 +6385,7 @@ do
2400 test -z "$as_dir" && as_dir=. 2400 test -z "$as_dir" && as_dir=.
2401 for ac_exec_ext in '' $ac_executable_extensions; do 2401 for ac_exec_ext in '' $ac_executable_extensions; do
2402 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2402 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
@@ -2405,7 +2405,7 @@ index 6f08b6bdcde..03d922de70e 100755
2405 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 2405 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2406 break 2 2406 break 2
2407 fi 2407 fi
2408@@ -5926,11 +6180,15 @@ $as_echo "no" >&6; } 2408@@ -6151,11 +6405,15 @@ $as_echo "no" >&6; }
2409 fi 2409 fi
2410 2410
2411 2411
@@ -2424,7 +2424,7 @@ index 6f08b6bdcde..03d922de70e 100755
2424 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2424 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2425 $as_echo_n "checking for $ac_word... " >&6; } 2425 $as_echo_n "checking for $ac_word... " >&6; }
2426 if ${ac_cv_prog_ac_ct_AR+:} false; then : 2426 if ${ac_cv_prog_ac_ct_AR+:} false; then :
2427@@ -5946,7 +6204,7 @@ do 2427@@ -6171,7 +6429,7 @@ do
2428 test -z "$as_dir" && as_dir=. 2428 test -z "$as_dir" && as_dir=.
2429 for ac_exec_ext in '' $ac_executable_extensions; do 2429 for ac_exec_ext in '' $ac_executable_extensions; do
2430 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then 2430 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
@@ -2433,7 +2433,7 @@ index 6f08b6bdcde..03d922de70e 100755
2433 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 2433 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2434 break 2 2434 break 2
2435 fi 2435 fi
2436@@ -5965,6 +6223,10 @@ else 2436@@ -6190,6 +6448,10 @@ else
2437 $as_echo "no" >&6; } 2437 $as_echo "no" >&6; }
2438 fi 2438 fi
2439 2439
@@ -2444,7 +2444,7 @@ index 6f08b6bdcde..03d922de70e 100755
2444 if test "x$ac_ct_AR" = x; then 2444 if test "x$ac_ct_AR" = x; then
2445 AR="false" 2445 AR="false"
2446 else 2446 else
2447@@ -5976,25 +6238,19 @@ ac_tool_warned=yes ;; 2447@@ -6201,25 +6463,19 @@ ac_tool_warned=yes ;;
2448 esac 2448 esac
2449 AR=$ac_ct_AR 2449 AR=$ac_ct_AR
2450 fi 2450 fi
@@ -2479,7 +2479,7 @@ index 6f08b6bdcde..03d922de70e 100755
2479 2479
2480 2480
2481 2481
2482@@ -6006,6 +6262,64 @@ test -z "$AR_FLAGS" && AR_FLAGS=cru 2482@@ -6231,6 +6487,64 @@ test -z "$AR_FLAGS" && AR_FLAGS=cru
2483 2483
2484 2484
2485 2485
@@ -2544,7 +2544,7 @@ index 6f08b6bdcde..03d922de70e 100755
2544 if test -n "$ac_tool_prefix"; then 2544 if test -n "$ac_tool_prefix"; then
2545 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. 2545 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
2546 set dummy ${ac_tool_prefix}strip; ac_word=$2 2546 set dummy ${ac_tool_prefix}strip; ac_word=$2
2547@@ -6345,8 +6659,8 @@ esac 2547@@ -6570,8 +6884,8 @@ esac
2548 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" 2548 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
2549 2549
2550 # Transform an extracted symbol line into symbol name and symbol address 2550 # Transform an extracted symbol line into symbol name and symbol address
@@ -2555,7 +2555,7 @@ index 6f08b6bdcde..03d922de70e 100755
2555 2555
2556 # Handle CRLF in mingw tool chain 2556 # Handle CRLF in mingw tool chain
2557 opt_cr= 2557 opt_cr=
2558@@ -6382,6 +6696,7 @@ for ac_symprfx in "" "_"; do 2558@@ -6607,6 +6921,7 @@ for ac_symprfx in "" "_"; do
2559 else 2559 else
2560 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" 2560 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
2561 fi 2561 fi
@@ -2563,7 +2563,7 @@ index 6f08b6bdcde..03d922de70e 100755
2563 2563
2564 # Check to see that the pipe works correctly. 2564 # Check to see that the pipe works correctly.
2565 pipe_works=no 2565 pipe_works=no
2566@@ -6423,6 +6738,18 @@ _LT_EOF 2566@@ -6648,6 +6963,18 @@ _LT_EOF
2567 if $GREP ' nm_test_var$' "$nlist" >/dev/null; then 2567 if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
2568 if $GREP ' nm_test_func$' "$nlist" >/dev/null; then 2568 if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
2569 cat <<_LT_EOF > conftest.$ac_ext 2569 cat <<_LT_EOF > conftest.$ac_ext
@@ -2582,7 +2582,7 @@ index 6f08b6bdcde..03d922de70e 100755
2582 #ifdef __cplusplus 2582 #ifdef __cplusplus
2583 extern "C" { 2583 extern "C" {
2584 #endif 2584 #endif
2585@@ -6434,7 +6761,7 @@ _LT_EOF 2585@@ -6659,7 +6986,7 @@ _LT_EOF
2586 cat <<_LT_EOF >> conftest.$ac_ext 2586 cat <<_LT_EOF >> conftest.$ac_ext
2587 2587
2588 /* The mapping between symbol names and symbols. */ 2588 /* The mapping between symbol names and symbols. */
@@ -2591,7 +2591,7 @@ index 6f08b6bdcde..03d922de70e 100755
2591 const char *name; 2591 const char *name;
2592 void *address; 2592 void *address;
2593 } 2593 }
2594@@ -6460,8 +6787,8 @@ static const void *lt_preloaded_setup() { 2594@@ -6685,8 +7012,8 @@ static const void *lt_preloaded_setup() {
2595 _LT_EOF 2595 _LT_EOF
2596 # Now try linking the two files. 2596 # Now try linking the two files.
2597 mv conftest.$ac_objext conftstm.$ac_objext 2597 mv conftest.$ac_objext conftstm.$ac_objext
@@ -2602,7 +2602,7 @@ index 6f08b6bdcde..03d922de70e 100755
2602 LIBS="conftstm.$ac_objext" 2602 LIBS="conftstm.$ac_objext"
2603 CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" 2603 CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag"
2604 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 2604 if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5
2605@@ -6471,8 +6798,8 @@ _LT_EOF 2605@@ -6696,8 +7023,8 @@ _LT_EOF
2606 test $ac_status = 0; } && test -s conftest${ac_exeext}; then 2606 test $ac_status = 0; } && test -s conftest${ac_exeext}; then
2607 pipe_works=yes 2607 pipe_works=yes
2608 fi 2608 fi
@@ -2613,7 +2613,7 @@ index 6f08b6bdcde..03d922de70e 100755
2613 else 2613 else
2614 echo "cannot find nm_test_func in $nlist" >&5 2614 echo "cannot find nm_test_func in $nlist" >&5
2615 fi 2615 fi
2616@@ -6509,6 +6836,18 @@ else 2616@@ -6734,6 +7061,18 @@ else
2617 $as_echo "ok" >&6; } 2617 $as_echo "ok" >&6; }
2618 fi 2618 fi
2619 2619
@@ -2632,7 +2632,7 @@ index 6f08b6bdcde..03d922de70e 100755
2632 2632
2633 2633
2634 2634
2635@@ -6525,6 +6864,43 @@ fi 2635@@ -6750,6 +7089,43 @@ fi
2636 2636
2637 2637
2638 2638
@@ -2676,7 +2676,7 @@ index 6f08b6bdcde..03d922de70e 100755
2676 2676
2677 2677
2678 2678
2679@@ -6736,6 +7112,123 @@ esac 2679@@ -6961,6 +7337,123 @@ esac
2680 2680
2681 need_locks="$enable_libtool_lock" 2681 need_locks="$enable_libtool_lock"
2682 2682
@@ -2800,7 +2800,7 @@ index 6f08b6bdcde..03d922de70e 100755
2800 2800
2801 case $host_os in 2801 case $host_os in
2802 rhapsody* | darwin*) 2802 rhapsody* | darwin*)
2803@@ -7299,6 +7792,8 @@ _LT_EOF 2803@@ -7524,6 +8017,8 @@ _LT_EOF
2804 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 2804 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5
2805 echo "$AR cru libconftest.a conftest.o" >&5 2805 echo "$AR cru libconftest.a conftest.o" >&5
2806 $AR cru libconftest.a conftest.o 2>&5 2806 $AR cru libconftest.a conftest.o 2>&5
@@ -2809,7 +2809,7 @@ index 6f08b6bdcde..03d922de70e 100755
2809 cat > conftest.c << _LT_EOF 2809 cat > conftest.c << _LT_EOF
2810 int main() { return 0;} 2810 int main() { return 0;}
2811 _LT_EOF 2811 _LT_EOF
2812@@ -7883,8 +8378,6 @@ fi 2812@@ -8108,8 +8603,6 @@ fi
2813 lt_prog_compiler_pic= 2813 lt_prog_compiler_pic=
2814 lt_prog_compiler_static= 2814 lt_prog_compiler_static=
2815 2815
@@ -2818,7 +2818,7 @@ index 6f08b6bdcde..03d922de70e 100755
2818 2818
2819 if test "$GCC" = yes; then 2819 if test "$GCC" = yes; then
2820 lt_prog_compiler_wl='-Wl,' 2820 lt_prog_compiler_wl='-Wl,'
2821@@ -8050,6 +8543,12 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; } 2821@@ -8275,6 +8768,12 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
2822 lt_prog_compiler_pic='--shared' 2822 lt_prog_compiler_pic='--shared'
2823 lt_prog_compiler_static='--static' 2823 lt_prog_compiler_static='--static'
2824 ;; 2824 ;;
@@ -2831,7 +2831,7 @@ index 6f08b6bdcde..03d922de70e 100755
2831 pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) 2831 pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
2832 # Portland Group compilers (*not* the Pentium gcc compiler, 2832 # Portland Group compilers (*not* the Pentium gcc compiler,
2833 # which looks to be a dead project) 2833 # which looks to be a dead project)
2834@@ -8112,7 +8611,7 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; } 2834@@ -8337,7 +8836,7 @@ $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
2835 lt_prog_compiler_pic='-KPIC' 2835 lt_prog_compiler_pic='-KPIC'
2836 lt_prog_compiler_static='-Bstatic' 2836 lt_prog_compiler_static='-Bstatic'
2837 case $cc_basename in 2837 case $cc_basename in
@@ -2840,7 +2840,7 @@ index 6f08b6bdcde..03d922de70e 100755
2840 lt_prog_compiler_wl='-Qoption ld ';; 2840 lt_prog_compiler_wl='-Qoption ld ';;
2841 *) 2841 *)
2842 lt_prog_compiler_wl='-Wl,';; 2842 lt_prog_compiler_wl='-Wl,';;
2843@@ -8169,13 +8668,17 @@ case $host_os in 2843@@ -8394,13 +8893,17 @@ case $host_os in
2844 lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" 2844 lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC"
2845 ;; 2845 ;;
2846 esac 2846 esac
@@ -2864,7 +2864,7 @@ index 6f08b6bdcde..03d922de70e 100755
2864 2864
2865 # 2865 #
2866 # Check to make sure the PIC flag actually works. 2866 # Check to make sure the PIC flag actually works.
2867@@ -8236,6 +8739,11 @@ fi 2867@@ -8461,6 +8964,11 @@ fi
2868 2868
2869 2869
2870 2870
@@ -2876,7 +2876,7 @@ index 6f08b6bdcde..03d922de70e 100755
2876 # 2876 #
2877 # Check to make sure the static flag actually works. 2877 # Check to make sure the static flag actually works.
2878 # 2878 #
2879@@ -8586,7 +9094,8 @@ _LT_EOF 2879@@ -8811,7 +9319,8 @@ _LT_EOF
2880 allow_undefined_flag=unsupported 2880 allow_undefined_flag=unsupported
2881 always_export_symbols=no 2881 always_export_symbols=no
2882 enable_shared_with_static_runtimes=yes 2882 enable_shared_with_static_runtimes=yes
@@ -2886,7 +2886,7 @@ index 6f08b6bdcde..03d922de70e 100755
2886 2886
2887 if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then 2887 if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
2888 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' 2888 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
2889@@ -8685,12 +9194,12 @@ _LT_EOF 2889@@ -8910,12 +9419,12 @@ _LT_EOF
2890 whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' 2890 whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'
2891 hardcode_libdir_flag_spec= 2891 hardcode_libdir_flag_spec=
2892 hardcode_libdir_flag_spec_ld='-rpath $libdir' 2892 hardcode_libdir_flag_spec_ld='-rpath $libdir'
@@ -2901,7 +2901,7 @@ index 6f08b6bdcde..03d922de70e 100755
2901 fi 2901 fi
2902 ;; 2902 ;;
2903 esac 2903 esac
2904@@ -8704,8 +9213,8 @@ _LT_EOF 2904@@ -8929,8 +9438,8 @@ _LT_EOF
2905 archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' 2905 archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
2906 wlarc= 2906 wlarc=
2907 else 2907 else
@@ -2912,7 +2912,7 @@ index 6f08b6bdcde..03d922de70e 100755
2912 fi 2912 fi
2913 ;; 2913 ;;
2914 2914
2915@@ -8723,8 +9232,8 @@ _LT_EOF 2915@@ -8948,8 +9457,8 @@ _LT_EOF
2916 2916
2917 _LT_EOF 2917 _LT_EOF
2918 elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then 2918 elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
@@ -2923,7 +2923,7 @@ index 6f08b6bdcde..03d922de70e 100755
2923 else 2923 else
2924 ld_shlibs=no 2924 ld_shlibs=no
2925 fi 2925 fi
2926@@ -8770,8 +9279,8 @@ _LT_EOF 2926@@ -8995,8 +9504,8 @@ _LT_EOF
2927 2927
2928 *) 2928 *)
2929 if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then 2929 if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
@@ -2934,7 +2934,7 @@ index 6f08b6bdcde..03d922de70e 100755
2934 else 2934 else
2935 ld_shlibs=no 2935 ld_shlibs=no
2936 fi 2936 fi
2937@@ -8901,7 +9410,13 @@ _LT_EOF 2937@@ -9126,7 +9635,13 @@ _LT_EOF
2938 allow_undefined_flag='-berok' 2938 allow_undefined_flag='-berok'
2939 # Determine the default libpath from the value encoded in an 2939 # Determine the default libpath from the value encoded in an
2940 # empty executable. 2940 # empty executable.
@@ -2949,7 +2949,7 @@ index 6f08b6bdcde..03d922de70e 100755
2949 /* end confdefs.h. */ 2949 /* end confdefs.h. */
2950 2950
2951 int 2951 int
2952@@ -8914,22 +9429,29 @@ main () 2952@@ -9139,22 +9654,29 @@ main ()
2953 _ACEOF 2953 _ACEOF
2954 if ac_fn_c_try_link "$LINENO"; then : 2954 if ac_fn_c_try_link "$LINENO"; then :
2955 2955
@@ -2992,7 +2992,7 @@ index 6f08b6bdcde..03d922de70e 100755
2992 2992
2993 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" 2993 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
2994 archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" 2994 archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
2995@@ -8941,7 +9463,13 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 2995@@ -9166,7 +9688,13 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
2996 else 2996 else
2997 # Determine the default libpath from the value encoded in an 2997 # Determine the default libpath from the value encoded in an
2998 # empty executable. 2998 # empty executable.
@@ -3007,7 +3007,7 @@ index 6f08b6bdcde..03d922de70e 100755
3007 /* end confdefs.h. */ 3007 /* end confdefs.h. */
3008 3008
3009 int 3009 int
3010@@ -8954,22 +9482,29 @@ main () 3010@@ -9179,22 +9707,29 @@ main ()
3011 _ACEOF 3011 _ACEOF
3012 if ac_fn_c_try_link "$LINENO"; then : 3012 if ac_fn_c_try_link "$LINENO"; then :
3013 3013
@@ -3050,7 +3050,7 @@ index 6f08b6bdcde..03d922de70e 100755
3050 3050
3051 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" 3051 hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
3052 # Warning - without using the other run time loading flags, 3052 # Warning - without using the other run time loading flags,
3053@@ -9014,20 +9549,63 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 3053@@ -9239,20 +9774,63 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
3054 # Microsoft Visual C++. 3054 # Microsoft Visual C++.
3055 # hardcode_libdir_flag_spec is actually meaningless, as there is 3055 # hardcode_libdir_flag_spec is actually meaningless, as there is
3056 # no search path for DLLs. 3056 # no search path for DLLs.
@@ -3128,7 +3128,7 @@ index 6f08b6bdcde..03d922de70e 100755
3128 ;; 3128 ;;
3129 3129
3130 darwin* | rhapsody*) 3130 darwin* | rhapsody*)
3131@@ -9088,7 +9666,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 3131@@ -9313,7 +9891,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
3132 3132
3133 # FreeBSD 3 and greater uses gcc -shared to do shared libraries. 3133 # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
3134 freebsd* | dragonfly*) 3134 freebsd* | dragonfly*)
@@ -3137,7 +3137,7 @@ index 6f08b6bdcde..03d922de70e 100755
3137 hardcode_libdir_flag_spec='-R$libdir' 3137 hardcode_libdir_flag_spec='-R$libdir'
3138 hardcode_direct=yes 3138 hardcode_direct=yes
3139 hardcode_shlibpath_var=no 3139 hardcode_shlibpath_var=no
3140@@ -9096,7 +9674,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 3140@@ -9321,7 +9899,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
3141 3141
3142 hpux9*) 3142 hpux9*)
3143 if test "$GCC" = yes; then 3143 if test "$GCC" = yes; then
@@ -3146,7 +3146,7 @@ index 6f08b6bdcde..03d922de70e 100755
3146 else 3146 else
3147 archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' 3147 archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
3148 fi 3148 fi
3149@@ -9112,7 +9690,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 3149@@ -9337,7 +9915,7 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
3150 3150
3151 hpux10*) 3151 hpux10*)
3152 if test "$GCC" = yes && test "$with_gnu_ld" = no; then 3152 if test "$GCC" = yes && test "$with_gnu_ld" = no; then
@@ -3155,7 +3155,7 @@ index 6f08b6bdcde..03d922de70e 100755
3155 else 3155 else
3156 archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' 3156 archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
3157 fi 3157 fi
3158@@ -9136,10 +9714,10 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi 3158@@ -9361,10 +9939,10 @@ if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
3159 archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' 3159 archive_cmds='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
3160 ;; 3160 ;;
3161 ia64*) 3161 ia64*)
@@ -3168,7 +3168,7 @@ index 6f08b6bdcde..03d922de70e 100755
3168 ;; 3168 ;;
3169 esac 3169 esac
3170 else 3170 else
3171@@ -9218,23 +9796,36 @@ fi 3171@@ -9443,23 +10021,36 @@ fi
3172 3172
3173 irix5* | irix6* | nonstopux*) 3173 irix5* | irix6* | nonstopux*)
3174 if test "$GCC" = yes; then 3174 if test "$GCC" = yes; then
@@ -3213,7 +3213,7 @@ index 6f08b6bdcde..03d922de70e 100755
3213 else 3213 else
3214 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' 3214 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
3215 archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' 3215 archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
3216@@ -9319,7 +9910,7 @@ rm -f core conftest.err conftest.$ac_objext \ 3216@@ -9544,7 +10135,7 @@ rm -f core conftest.err conftest.$ac_objext \
3217 osf4* | osf5*) # as osf3* with the addition of -msym flag 3217 osf4* | osf5*) # as osf3* with the addition of -msym flag
3218 if test "$GCC" = yes; then 3218 if test "$GCC" = yes; then
3219 allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' 3219 allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
@@ -3222,7 +3222,7 @@ index 6f08b6bdcde..03d922de70e 100755
3222 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' 3222 hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
3223 else 3223 else
3224 allow_undefined_flag=' -expect_unresolved \*' 3224 allow_undefined_flag=' -expect_unresolved \*'
3225@@ -9338,9 +9929,9 @@ rm -f core conftest.err conftest.$ac_objext \ 3225@@ -9563,9 +10154,9 @@ rm -f core conftest.err conftest.$ac_objext \
3226 no_undefined_flag=' -z defs' 3226 no_undefined_flag=' -z defs'
3227 if test "$GCC" = yes; then 3227 if test "$GCC" = yes; then
3228 wlarc='${wl}' 3228 wlarc='${wl}'
@@ -3234,7 +3234,7 @@ index 6f08b6bdcde..03d922de70e 100755
3234 else 3234 else
3235 case `$CC -V 2>&1` in 3235 case `$CC -V 2>&1` in
3236 *"Compilers 5.0"*) 3236 *"Compilers 5.0"*)
3237@@ -9916,8 +10507,9 @@ cygwin* | mingw* | pw32* | cegcc*) 3237@@ -10141,8 +10732,9 @@ cygwin* | mingw* | pw32* | cegcc*)
3238 need_version=no 3238 need_version=no
3239 need_lib_prefix=no 3239 need_lib_prefix=no
3240 3240
@@ -3246,7 +3246,7 @@ index 6f08b6bdcde..03d922de70e 100755
3246 library_names_spec='$libname.dll.a' 3246 library_names_spec='$libname.dll.a'
3247 # DLL is installed to $(libdir)/../bin by postinstall_cmds 3247 # DLL is installed to $(libdir)/../bin by postinstall_cmds
3248 postinstall_cmds='base_file=`basename \${file}`~ 3248 postinstall_cmds='base_file=`basename \${file}`~
3249@@ -9950,13 +10542,71 @@ cygwin* | mingw* | pw32* | cegcc*) 3249@@ -10175,13 +10767,71 @@ cygwin* | mingw* | pw32* | cegcc*)
3250 library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' 3250 library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
3251 ;; 3251 ;;
3252 esac 3252 esac
@@ -3319,16 +3319,16 @@ index 6f08b6bdcde..03d922de70e 100755
3319 # FIXME: first we should search . and the directory the executable is in 3319 # FIXME: first we should search . and the directory the executable is in
3320 shlibpath_var=PATH 3320 shlibpath_var=PATH
3321 ;; 3321 ;;
3322@@ -10858,7 +11508,7 @@ else 3322@@ -11083,7 +11733,7 @@ else
3323 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 3323 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
3324 lt_status=$lt_dlunknown 3324 lt_status=$lt_dlunknown
3325 cat > conftest.$ac_ext <<_LT_EOF 3325 cat > conftest.$ac_ext <<_LT_EOF
3326-#line 10861 "configure" 3326-#line 11086 "configure"
3327+#line $LINENO "configure" 3327+#line $LINENO "configure"
3328 #include "confdefs.h" 3328 #include "confdefs.h"
3329 3329
3330 #if HAVE_DLFCN_H 3330 #if HAVE_DLFCN_H
3331@@ -10902,10 +11552,10 @@ else 3331@@ -11127,10 +11777,10 @@ else
3332 /* When -fvisbility=hidden is used, assume the code has been annotated 3332 /* When -fvisbility=hidden is used, assume the code has been annotated
3333 correspondingly for the symbols needed. */ 3333 correspondingly for the symbols needed. */
3334 #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) 3334 #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
@@ -3341,16 +3341,16 @@ index 6f08b6bdcde..03d922de70e 100755
3341 int main () 3341 int main ()
3342 { 3342 {
3343 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); 3343 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
3344@@ -10964,7 +11614,7 @@ else 3344@@ -11189,7 +11839,7 @@ else
3345 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 3345 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
3346 lt_status=$lt_dlunknown 3346 lt_status=$lt_dlunknown
3347 cat > conftest.$ac_ext <<_LT_EOF 3347 cat > conftest.$ac_ext <<_LT_EOF
3348-#line 10967 "configure" 3348-#line 11192 "configure"
3349+#line $LINENO "configure" 3349+#line $LINENO "configure"
3350 #include "confdefs.h" 3350 #include "confdefs.h"
3351 3351
3352 #if HAVE_DLFCN_H 3352 #if HAVE_DLFCN_H
3353@@ -11008,10 +11658,10 @@ else 3353@@ -11233,10 +11883,10 @@ else
3354 /* When -fvisbility=hidden is used, assume the code has been annotated 3354 /* When -fvisbility=hidden is used, assume the code has been annotated
3355 correspondingly for the symbols needed. */ 3355 correspondingly for the symbols needed. */
3356 #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) 3356 #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
@@ -3363,7 +3363,7 @@ index 6f08b6bdcde..03d922de70e 100755
3363 int main () 3363 int main ()
3364 { 3364 {
3365 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); 3365 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
3366@@ -17164,13 +17814,20 @@ exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' 3366@@ -17390,13 +18040,20 @@ exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`'
3367 lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' 3367 lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`'
3368 lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' 3368 lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`'
3369 lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' 3369 lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`'
@@ -3384,7 +3384,7 @@ index 6f08b6bdcde..03d922de70e 100755
3384 STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' 3384 STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`'
3385 RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' 3385 RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`'
3386 old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' 3386 old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`'
3387@@ -17185,14 +17842,17 @@ lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$de 3387@@ -17411,14 +18068,17 @@ lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$de
3388 lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' 3388 lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`'
3389 lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' 3389 lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`'
3390 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' 3390 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`'
@@ -3403,7 +3403,7 @@ index 6f08b6bdcde..03d922de70e 100755
3403 DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' 3403 DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`'
3404 NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' 3404 NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`'
3405 LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' 3405 LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`'
3406@@ -17225,12 +17885,12 @@ hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_q 3406@@ -17451,12 +18111,12 @@ hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_q
3407 hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' 3407 hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`'
3408 inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' 3408 inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`'
3409 link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' 3409 link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`'
@@ -3417,7 +3417,7 @@ index 6f08b6bdcde..03d922de70e 100755
3417 file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' 3417 file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`'
3418 variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' 3418 variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`'
3419 need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' 3419 need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`'
3420@@ -17285,8 +17945,13 @@ reload_flag \ 3420@@ -17511,8 +18171,13 @@ reload_flag \
3421 OBJDUMP \ 3421 OBJDUMP \
3422 deplibs_check_method \ 3422 deplibs_check_method \
3423 file_magic_cmd \ 3423 file_magic_cmd \
@@ -3431,7 +3431,7 @@ index 6f08b6bdcde..03d922de70e 100755
3431 STRIP \ 3431 STRIP \
3432 RANLIB \ 3432 RANLIB \
3433 CC \ 3433 CC \
3434@@ -17296,12 +17961,14 @@ lt_cv_sys_global_symbol_pipe \ 3434@@ -17522,12 +18187,14 @@ lt_cv_sys_global_symbol_pipe \
3435 lt_cv_sys_global_symbol_to_cdecl \ 3435 lt_cv_sys_global_symbol_to_cdecl \
3436 lt_cv_sys_global_symbol_to_c_name_address \ 3436 lt_cv_sys_global_symbol_to_c_name_address \
3437 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ 3437 lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \
@@ -3447,7 +3447,7 @@ index 6f08b6bdcde..03d922de70e 100755
3447 DSYMUTIL \ 3447 DSYMUTIL \
3448 NMEDIT \ 3448 NMEDIT \
3449 LIPO \ 3449 LIPO \
3450@@ -17317,7 +17984,6 @@ no_undefined_flag \ 3450@@ -17543,7 +18210,6 @@ no_undefined_flag \
3451 hardcode_libdir_flag_spec \ 3451 hardcode_libdir_flag_spec \
3452 hardcode_libdir_flag_spec_ld \ 3452 hardcode_libdir_flag_spec_ld \
3453 hardcode_libdir_separator \ 3453 hardcode_libdir_separator \
@@ -3455,7 +3455,7 @@ index 6f08b6bdcde..03d922de70e 100755
3455 exclude_expsyms \ 3455 exclude_expsyms \
3456 include_expsyms \ 3456 include_expsyms \
3457 file_list_spec \ 3457 file_list_spec \
3458@@ -17353,6 +18019,7 @@ module_cmds \ 3458@@ -17579,6 +18245,7 @@ module_cmds \
3459 module_expsym_cmds \ 3459 module_expsym_cmds \
3460 export_symbols_cmds \ 3460 export_symbols_cmds \
3461 prelink_cmds \ 3461 prelink_cmds \
@@ -3463,7 +3463,7 @@ index 6f08b6bdcde..03d922de70e 100755
3463 postinstall_cmds \ 3463 postinstall_cmds \
3464 postuninstall_cmds \ 3464 postuninstall_cmds \
3465 finish_cmds \ 3465 finish_cmds \
3466@@ -18126,7 +18793,8 @@ $as_echo X"$file" | 3466@@ -18352,7 +19019,8 @@ $as_echo X"$file" |
3467 # NOTE: Changes made to this file will be lost: look at ltmain.sh. 3467 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
3468 # 3468 #
3469 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 3469 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
@@ -3473,7 +3473,7 @@ index 6f08b6bdcde..03d922de70e 100755
3473 # Written by Gordon Matzigkeit, 1996 3473 # Written by Gordon Matzigkeit, 1996
3474 # 3474 #
3475 # This file is part of GNU Libtool. 3475 # This file is part of GNU Libtool.
3476@@ -18229,19 +18897,42 @@ SP2NL=$lt_lt_SP2NL 3476@@ -18455,19 +19123,42 @@ SP2NL=$lt_lt_SP2NL
3477 # turn newlines into spaces. 3477 # turn newlines into spaces.
3478 NL2SP=$lt_lt_NL2SP 3478 NL2SP=$lt_lt_NL2SP
3479 3479
@@ -3517,7 +3517,7 @@ index 6f08b6bdcde..03d922de70e 100755
3517 # A symbol stripping program. 3517 # A symbol stripping program.
3518 STRIP=$lt_STRIP 3518 STRIP=$lt_STRIP
3519 3519
3520@@ -18271,6 +18962,12 @@ global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address 3520@@ -18497,6 +19188,12 @@ global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
3521 # Transform the output of nm in a C name address pair when lib prefix is needed. 3521 # Transform the output of nm in a C name address pair when lib prefix is needed.
3522 global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix 3522 global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
3523 3523
@@ -3530,7 +3530,7 @@ index 6f08b6bdcde..03d922de70e 100755
3530 # The name of the directory that contains temporary libtool files. 3530 # The name of the directory that contains temporary libtool files.
3531 objdir=$objdir 3531 objdir=$objdir
3532 3532
3533@@ -18280,6 +18977,9 @@ MAGIC_CMD=$MAGIC_CMD 3533@@ -18506,6 +19203,9 @@ MAGIC_CMD=$MAGIC_CMD
3534 # Must we lock files when doing compilation? 3534 # Must we lock files when doing compilation?
3535 need_locks=$lt_need_locks 3535 need_locks=$lt_need_locks
3536 3536
@@ -3540,7 +3540,7 @@ index 6f08b6bdcde..03d922de70e 100755
3540 # Tool to manipulate archived DWARF debug symbol files on Mac OS X. 3540 # Tool to manipulate archived DWARF debug symbol files on Mac OS X.
3541 DSYMUTIL=$lt_DSYMUTIL 3541 DSYMUTIL=$lt_DSYMUTIL
3542 3542
3543@@ -18394,12 +19094,12 @@ with_gcc=$GCC 3543@@ -18620,12 +19320,12 @@ with_gcc=$GCC
3544 # Compiler flag to turn off builtin functions. 3544 # Compiler flag to turn off builtin functions.
3545 no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag 3545 no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
3546 3546
@@ -3556,7 +3556,7 @@ index 6f08b6bdcde..03d922de70e 100755
3556 # Compiler flag to prevent dynamic linking. 3556 # Compiler flag to prevent dynamic linking.
3557 link_static_flag=$lt_lt_prog_compiler_static 3557 link_static_flag=$lt_lt_prog_compiler_static
3558 3558
3559@@ -18486,9 +19186,6 @@ inherit_rpath=$inherit_rpath 3559@@ -18712,9 +19412,6 @@ inherit_rpath=$inherit_rpath
3560 # Whether libtool must link a program against all its dependency libraries. 3560 # Whether libtool must link a program against all its dependency libraries.
3561 link_all_deplibs=$link_all_deplibs 3561 link_all_deplibs=$link_all_deplibs
3562 3562
@@ -3566,7 +3566,7 @@ index 6f08b6bdcde..03d922de70e 100755
3566 # Set to "yes" if exported symbols are required. 3566 # Set to "yes" if exported symbols are required.
3567 always_export_symbols=$always_export_symbols 3567 always_export_symbols=$always_export_symbols
3568 3568
3569@@ -18504,6 +19201,9 @@ include_expsyms=$lt_include_expsyms 3569@@ -18730,6 +19427,9 @@ include_expsyms=$lt_include_expsyms
3570 # Commands necessary for linking programs (against libraries) with templates. 3570 # Commands necessary for linking programs (against libraries) with templates.
3571 prelink_cmds=$lt_prelink_cmds 3571 prelink_cmds=$lt_prelink_cmds
3572 3572
@@ -3576,7 +3576,7 @@ index 6f08b6bdcde..03d922de70e 100755
3576 # Specify filename containing input files. 3576 # Specify filename containing input files.
3577 file_list_spec=$lt_file_list_spec 3577 file_list_spec=$lt_file_list_spec
3578 3578
3579@@ -18536,210 +19236,169 @@ ltmain="$ac_aux_dir/ltmain.sh" 3579@@ -18762,210 +19462,169 @@ ltmain="$ac_aux_dir/ltmain.sh"
3580 # if finds mixed CR/LF and LF-only lines. Since sed operates in 3580 # if finds mixed CR/LF and LF-only lines. Since sed operates in
3581 # text mode, it properly converts lines to CR/LF. This bash problem 3581 # text mode, it properly converts lines to CR/LF. This bash problem
3582 # is reportedly fixed, but why not run on old versions too? 3582 # is reportedly fixed, but why not run on old versions too?
@@ -3979,7 +3979,7 @@ index bc25765cb5b..c481d96a05a 100644
3979 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 3979 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
3980 am__include = @am__include@ 3980 am__include = @am__include@
3981diff --git a/gas/configure b/gas/configure 3981diff --git a/gas/configure b/gas/configure
3982index e4c4bcb69a5..63ee2a1445d 100755 3982index 5f8c8493589..998727b6108 100755
3983--- a/gas/configure 3983--- a/gas/configure
3984+++ b/gas/configure 3984+++ b/gas/configure
3985@@ -692,8 +692,11 @@ OTOOL 3985@@ -692,8 +692,11 @@ OTOOL
@@ -5918,7 +5918,7 @@ index a7398231030..fc7a3d78db0 100644
5918 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 5918 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
5919 am__include = @am__include@ 5919 am__include = @am__include@
5920diff --git a/gprof/configure b/gprof/configure 5920diff --git a/gprof/configure b/gprof/configure
5921index 6d5c3612d3d..b2d9125ab60 100755 5921index 2d62b6fbb07..0cafee249eb 100755
5922--- a/gprof/configure 5922--- a/gprof/configure
5923+++ b/gprof/configure 5923+++ b/gprof/configure
5924@@ -669,8 +669,11 @@ OTOOL 5924@@ -669,8 +669,11 @@ OTOOL
@@ -7852,7 +7852,7 @@ index dbc868191b7..1ca6dd01f58 100644
7852 NM = @NM@ 7852 NM = @NM@
7853 NMEDIT = @NMEDIT@ 7853 NMEDIT = @NMEDIT@
7854diff --git a/gprofng/configure b/gprofng/configure 7854diff --git a/gprofng/configure b/gprofng/configure
7855index 6dfafb4e483..2dc8702f339 100755 7855index bdfa2281f2c..b6376eb3f77 100755
7856--- a/gprofng/configure 7856--- a/gprofng/configure
7857+++ b/gprofng/configure 7857+++ b/gprofng/configure
7858@@ -671,6 +671,8 @@ OTOOL 7858@@ -671,6 +671,8 @@ OTOOL
@@ -10488,7 +10488,7 @@ index ce8755c80c9..91e29c29ab8 100644
10488 NM = @NM@ 10488 NM = @NM@
10489 NMEDIT = @NMEDIT@ 10489 NMEDIT = @NMEDIT@
10490diff --git a/gprofng/libcollector/configure b/gprofng/libcollector/configure 10490diff --git a/gprofng/libcollector/configure b/gprofng/libcollector/configure
10491index b6737b96bd5..d1552932a75 100755 10491index 8b0092433fe..a363ab1047c 100755
10492--- a/gprofng/libcollector/configure 10492--- a/gprofng/libcollector/configure
10493+++ b/gprofng/libcollector/configure 10493+++ b/gprofng/libcollector/configure
10494@@ -640,6 +640,8 @@ OTOOL 10494@@ -640,6 +640,8 @@ OTOOL
@@ -13112,7 +13112,7 @@ index 15311048855..71b39ee9311 100644
13112 ac_ct_CXX = @ac_ct_CXX@ 13112 ac_ct_CXX = @ac_ct_CXX@
13113 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 13113 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
13114diff --git a/ld/configure b/ld/configure 13114diff --git a/ld/configure b/ld/configure
13115index 867f3f62c88..60fbf749e61 100755 13115index 98a76d6da7f..a4266996c44 100755
13116--- a/ld/configure 13116--- a/ld/configure
13117+++ b/ld/configure 13117+++ b/ld/configure
13118@@ -705,8 +705,11 @@ OTOOL 13118@@ -705,8 +705,11 @@ OTOOL
@@ -30548,7 +30548,7 @@ index 245479140c9..bfed90449bf 100644
30548 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 30548 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
30549 am__include = @am__include@ 30549 am__include = @am__include@
30550diff --git a/opcodes/configure b/opcodes/configure 30550diff --git a/opcodes/configure b/opcodes/configure
30551index 6cd3730c5a2..824f42ab20a 100755 30551index 1660c3266a3..a1b84ed81f9 100755
30552--- a/opcodes/configure 30552--- a/opcodes/configure
30553+++ b/opcodes/configure 30553+++ b/opcodes/configure
30554@@ -688,6 +688,9 @@ OTOOL 30554@@ -688,6 +688,9 @@ OTOOL
diff --git a/meta/recipes-devtools/binutils/binutils/0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch b/meta/recipes-devtools/binutils/binutils/0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch
index 5f87c2ebf0..50201fb6b6 100644
--- a/meta/recipes-devtools/binutils/binutils/0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch
+++ b/meta/recipes-devtools/binutils/binutils/0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch
@@ -1,4 +1,4 @@
1From 37a395151679d74c98a23ad5c39ed02009487f9c Mon Sep 17 00:00:00 2001 1From c9e810840d95554046b7132e3e2c98bf99cb2d89 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 2 Mar 2015 01:42:38 +0000 3Date: Mon, 2 Mar 2015 01:42:38 +0000
4Subject: [PATCH] Fix rpath in libtool when sysroot is enabled 4Subject: [PATCH] Fix rpath in libtool when sysroot is enabled
diff --git a/meta/recipes-devtools/binutils/binutils/0010-sync-with-OE-libtool-changes.patch b/meta/recipes-devtools/binutils/binutils/0010-sync-with-OE-libtool-changes.patch
index 5f6708896d..57d9ac5f27 100644
--- a/meta/recipes-devtools/binutils/binutils/0010-sync-with-OE-libtool-changes.patch
+++ b/meta/recipes-devtools/binutils/binutils/0010-sync-with-OE-libtool-changes.patch
@@ -1,4 +1,4 @@
1From 8c2788cee8eb69c8bde5778129a6b66287868c3b Mon Sep 17 00:00:00 2001 1From befc176c209bbb4c32b57c2068e813c88b1ab6b1 Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@intel.com> 2From: Ross Burton <ross.burton@intel.com>
3Date: Mon, 6 Mar 2017 23:33:27 -0800 3Date: Mon, 6 Mar 2017 23:33:27 -0800
4Subject: [PATCH] sync with OE libtool changes 4Subject: [PATCH] sync with OE libtool changes
diff --git a/meta/recipes-devtools/binutils/binutils/0011-Check-for-clang-before-checking-gcc-version.patch b/meta/recipes-devtools/binutils/binutils/0011-Check-for-clang-before-checking-gcc-version.patch
index e753627a24..c47f41f5ca 100644
--- a/meta/recipes-devtools/binutils/binutils/0011-Check-for-clang-before-checking-gcc-version.patch
+++ b/meta/recipes-devtools/binutils/binutils/0011-Check-for-clang-before-checking-gcc-version.patch
@@ -1,4 +1,4 @@
1From 11bbb4f62b0f914f59f3f01a9d835930f9eb1122 Mon Sep 17 00:00:00 2001 1From cad852e0ed46a1c26607f9e7d17cc5974b05e38a Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 15 Apr 2020 14:17:20 -0700 3Date: Wed, 15 Apr 2020 14:17:20 -0700
4Subject: [PATCH] Check for clang before checking gcc version 4Subject: [PATCH] Check for clang before checking gcc version
diff --git a/meta/recipes-devtools/binutils/binutils/0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch b/meta/recipes-devtools/binutils/binutils/0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch
index 7059eb467c..985911aab1 100644
--- a/meta/recipes-devtools/binutils/binutils/0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch
+++ b/meta/recipes-devtools/binutils/binutils/0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch
@@ -1,4 +1,4 @@
1From 65c8ea481cda572b60d0949648df912e616d3884 Mon Sep 17 00:00:00 2001 1From 47e53916e3112391d8bff2b2257dcec0a2426d66 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 10 Mar 2022 21:21:33 -0800 3Date: Thu, 10 Mar 2022 21:21:33 -0800
4Subject: [PATCH] Only generate an RPATH entry if LD_RUN_PATH is not empty 4Subject: [PATCH] Only generate an RPATH entry if LD_RUN_PATH is not empty
diff --git a/meta/recipes-devtools/binutils/binutils/0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch b/meta/recipes-devtools/binutils/binutils/0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch
index 0b6065b60f..0cb2f46a07 100644
--- a/meta/recipes-devtools/binutils/binutils/0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch
+++ b/meta/recipes-devtools/binutils/binutils/0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch
@@ -1,4 +1,4 @@
1From ad6942752570199d3959e344c432bc92d9fc43ad Mon Sep 17 00:00:00 2001 1From d479020609329cdc7fa3675bc3daf072401fefae Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 15 Jan 2023 00:16:25 -0800 3Date: Sun, 15 Jan 2023 00:16:25 -0800
4Subject: [PATCH] Define alignof using _Alignof when using C11 or newer 4Subject: [PATCH] Define alignof using _Alignof when using C11 or newer
diff --git a/meta/recipes-devtools/binutils/binutils/0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch b/meta/recipes-devtools/binutils/binutils/0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch
index de1a6271d7..8aef2cc710 100644
--- a/meta/recipes-devtools/binutils/binutils/0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch
+++ b/meta/recipes-devtools/binutils/binutils/0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch
@@ -1,4 +1,4 @@
1From 6a21059fb86423304358693a200f1ad568cd6699 Mon Sep 17 00:00:00 2001 1From ddd941856582a82171626cbe609325b11e223704 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Jan 2023 19:35:07 -0800 3Date: Wed, 18 Jan 2023 19:35:07 -0800
4Subject: [PATCH] Remove duplicate pe-dll.o entry deom targ_extra_ofiles 4Subject: [PATCH] Remove duplicate pe-dll.o entry deom targ_extra_ofiles