[svn-commits] tzafrir: trunk r226018 - in /trunk: ./ configure configure.ac

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Oct 26 17:46:13 CDT 2009


Author: tzafrir
Date: Mon Oct 26 17:46:09 2009
New Revision: 226018

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=226018
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

Modified:
    trunk/   (props changed)
    trunk/configure
    trunk/configure.ac

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/configure.ac
URL: http://svnview.digium.com/svn/asterisk/trunk/configure.ac?view=diff&rev=226018&r1=226017&r2=226018
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Oct 26 17:46:09 2009
@@ -120,6 +120,9 @@
      cygwin)
      OSARCH=cygwin
      PBX_WINARCH=1
+     ;;
+     linux-gnueabi)
+     OSARCH=linux-gnu
      ;;
      *)
      OSARCH=${host_os}
@@ -708,7 +711,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 svn-commits mailing list