]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Look for correct "ar" to cross-compile
authorNick Mathewson <nickm@torproject.org>
Fri, 2 Sep 2011 15:51:49 +0000 (11:51 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 7 Sep 2011 15:59:16 +0000 (11:59 -0400)
For some reason, autoconf doesn't by default have an "AC_PROG_AR" for
this -- possibly it's assumed that any "ar" you have will work
everyplace.

Fixes bug 3909; found by sid77.

This fixes a build issue first present in fdbdb4dc1500, but the bug
(of not using a correct ar) has been in every Tor version ever: it
just didn't matter until then.

changes/bug3909 [new file with mode: 0644]
configure.in

diff --git a/changes/bug3909 b/changes/bug3909
new file mode 100644 (file)
index 0000000..0b4b292
--- /dev/null
@@ -0,0 +1,3 @@
+  o Build fixes:
+    - Search for a platform-specific version of "ar" when cross-compiling.
+      Should fix builds on iOS. Found by Marco Bonetti.
index 4e84298456d4e02d8edd553b7bce389ed4aea076..52ea0940244cc0320f43e21a5193007277d95e81 100644 (file)
@@ -118,6 +118,12 @@ if test "$enable_local_appdata" = "yes"; then
             [Defined if we default to host local appdata paths on Windows])
 fi
 
+dnl check for the correct "ar" when cross-compiling
+AN_MAKEVAR([AR], [AC_PROG_AR])
+AN_PROGRAM([ar], [AC_PROG_AR])
+AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL([AR], [ar], [ar])])
+AC_PROG_AR
+
 AC_PROG_CC
 AC_PROG_CPP
 AC_PROG_MAKE_SET