[asterisk-commits] mjordan: branch 1.8 r380520 - in /branches/1.8: configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 30 11:44:16 CST 2013
Author: mjordan
Date: Wed Jan 30 11:44:11 2013
New Revision: 380520
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=380520
Log:
Support building Asterisk for Raspberry Pi/Raspbian with hard-float support
Building Asterisk on Raspbian with hard-float support fails as it uses the
string 'linux-gnueabihf' for host os, as opposed to 'linux-gnueabi'. This patch
modifies the configure script for Asterisk such that it will match on any
string beginning with 'linux-gnueabi', as opposed to requiring an explicit
match.
(closes issue ASTERISK-21006)
Reported by: Christian Hesse
Tested by: Christian Hesse
patches:
linux-gnueabihf.patch uploaded by Christian Hesse (license 6459)
linux-gnueabihf-autoconf.patch uploaded by Christian Hesse (license 6459)
Modified:
branches/1.8/configure
branches/1.8/configure.ac
Modified: branches/1.8/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/configure.ac?view=diff&rev=380520&r1=380519&r2=380520
==============================================================================
--- branches/1.8/configure.ac (original)
+++ branches/1.8/configure.ac Wed Jan 30 11:44:11 2013
@@ -172,7 +172,7 @@
OSARCH=cygwin
PBX_WINARCH=1
;;
- linux-gnueabi)
+ linux-gnueabi*)
OSARCH=linux-gnu
;;
*)
More information about the asterisk-commits
mailing list