[asterisk-commits] tzafrir: branch 1.6.1 r226053 - in /branches/1.6.1: ./ configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 26 18:48:29 CDT 2009
Author: tzafrir
Date: Mon Oct 26 18:48:25 2009
New Revision: 226053
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=226053
Log:
detect ARM Linux EABI OSARCH as linux-gnu instead of linux-gnueabi
* Set OSARCH to linux-gnu even if host_os is linux-gnueabi
* When checking if we are Linux, check OSARCH rather than host_os
The newer ARM ABI ("EABI") shows the OS name 'linux-gnueabi' rather than
'linux-gnu' . This patch sets OSARCH to be 'linux-gnu' even in such a case.
OSARCH is tested for the value of 'linux-gnu' in one or two places in the
tree. This patch also fixes the check libcap to check for $OSARCH rather
than $host_os .
See also: http://wiki.debian.org/ArmEabiPort
Merged revisions 225957 via svnmerge from
http://svn.digium.com/svn/asterisk/branches/1.4
Merged revisions 226018 via svnmerge from
http://svn.digium.com/svn/asterisk/trunk
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/configure
branches/1.6.1/configure.ac
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/configure.ac?view=diff&rev=226053&r1=226052&r2=226053
==============================================================================
--- branches/1.6.1/configure.ac (original)
+++ branches/1.6.1/configure.ac Mon Oct 26 18:48:25 2009
@@ -108,6 +108,9 @@
cygwin)
OSARCH=cygwin
WINARCH=1
+ ;;
+ linux-gnueabi)
+ OSARCH=linux-gnu
;;
*)
OSARCH=${host_os}
@@ -634,7 +637,7 @@
AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
-if test "x${host_os}" = "xlinux-gnu" ; then
+if test "x${OSARCH}" = "xlinux-gnu" ; then
AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
fi
More information about the asterisk-commits
mailing list