summaryrefslogtreecommitdiff
path: root/package/libxmlrpc/0003-fix-ar-ranlib-handling.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/libxmlrpc/0003-fix-ar-ranlib-handling.patch')
-rw-r--r--package/libxmlrpc/0003-fix-ar-ranlib-handling.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/package/libxmlrpc/0003-fix-ar-ranlib-handling.patch b/package/libxmlrpc/0003-fix-ar-ranlib-handling.patch
deleted file mode 100644
index 1e58d24780..0000000000
--- a/package/libxmlrpc/0003-fix-ar-ranlib-handling.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Fix detection of AR and RANLIB
-
-The configure.in script assumes that ranlib and ar are necessarily
-prefixed by ${ac_tool_prefix}, which is the value of --host. However,
-it's not necessarily the case.
-
-So instead, use AC_CHECK_TOOL to check for AR, and AC_PROG_RANLIB to
-check for RANLIB.
-
-Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
-Index: b/configure.in
-===================================================================
---- a/configure.in
-+++ b/configure.in
-@@ -621,10 +621,8 @@
- BUILDDIR=$(pwd)
- AC_SUBST(BUILDDIR)
-
--AR=${ac_tool_prefix}ar
--AC_SUBST([AR])
--RANLIB=${ac_tool_prefix}ranlib
--AC_SUBST([RANLIB])
-+AC_CHECK_TOOL([AR], [ar])
-+AC_PROG_RANLIB
-
- dnl =======================================================================
- dnl Output our results.