[asterisk-commits] tzafrir: branch 1.4 r225957 - in /branches/1.4: ./ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 26 17:13:28 CDT 2009
Author: tzafrir
Date: Mon Oct 26 17:13:25 2009
New Revision: 225957
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=225957
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
Modified:
branches/1.4/configure
branches/1.4/configure.ac
branches/1.4/include/asterisk/autoconfig.h.in
Modified: branches/1.4/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/configure.ac?view=diff&rev=225957&r1=225956&r2=225957
==============================================================================
--- branches/1.4/configure.ac (original)
+++ branches/1.4/configure.ac Mon Oct 26 17:13:25 2009
@@ -79,6 +79,9 @@
;;
solaris*)
OSARCH=SunOS
+ ;;
+ linux-gnueabi)
+ OSARCH=linux-gnu
;;
*)
OSARCH=${HOST_OS}
@@ -494,7 +497,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
Modified: branches/1.4/include/asterisk/autoconfig.h.in
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/include/asterisk/autoconfig.h.in?view=diff&rev=225957&r1=225956&r2=225957
==============================================================================
--- branches/1.4/include/asterisk/autoconfig.h.in (original)
+++ branches/1.4/include/asterisk/autoconfig.h.in Mon Oct 26 17:13:25 2009
@@ -71,7 +71,7 @@
/* Define to 1 if your system has a working `chown' function. */
#undef HAVE_CHOWN
-/* Define if your system has the curl libraries. */
+/* Define to 1 if you have a functional curl library. */
#undef HAVE_CURL
/* Define to 1 if you have the curses library. */
More information about the asterisk-commits
mailing list