[asterisk-commits] mjordan: branch 11 r380521 - in /branches/11: ./ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 30 11:46:56 CST 2013
Author: mjordan
Date: Wed Jan 30 11:46:52 2013
New Revision: 380521
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=380521
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)
........
Merged revisions 380520 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/11/ (props changed)
branches/11/configure
branches/11/configure.ac
branches/11/include/asterisk/autoconfig.h.in
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/11/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/11/configure.ac?view=diff&rev=380521&r1=380520&r2=380521
==============================================================================
--- branches/11/configure.ac (original)
+++ branches/11/configure.ac Wed Jan 30 11:46:52 2013
@@ -178,7 +178,7 @@
OSARCH=cygwin
PBX_WINARCH=1
;;
- linux-gnueabi)
+ linux-gnueabi*)
OSARCH=linux-gnu
;;
kfreebsd*-gnu)
Modified: branches/11/include/asterisk/autoconfig.h.in
URL: http://svnview.digium.com/svn/asterisk/branches/11/include/asterisk/autoconfig.h.in?view=diff&rev=380521&r1=380520&r2=380521
==============================================================================
--- branches/11/include/asterisk/autoconfig.h.in (original)
+++ branches/11/include/asterisk/autoconfig.h.in Wed Jan 30 11:46:52 2013
@@ -1226,11 +1226,6 @@
/* Define to 1 if running on Darwin. */
#undef _DARWIN_UNLIMITED_SELECT
-/* Enable large inode numbers on Mac OS X 10.5. */
-#ifndef _DARWIN_USE_64_BIT_INODE
-# define _DARWIN_USE_64_BIT_INODE 1
-#endif
-
/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS
More information about the asterisk-commits
mailing list