[asterisk-commits] file: trunk r81873 - in /trunk: configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Sep 7 07:32:05 CDT 2007
Author: file
Date: Fri Sep 7 07:32:04 2007
New Revision: 81873
URL: http://svn.digium.com/view/asterisk?view=rev&rev=81873
Log:
Don't check for epoll support when cross compiling.
Modified:
trunk/configure
trunk/configure.ac
Modified: trunk/configure
URL: http://svn.digium.com/view/asterisk/trunk/configure?view=diff&rev=81873&r1=81872&r2=81873
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Fri Sep 7 07:32:04 2007
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.ac Revision: 78683 .
+# From configure.ac Revision: 79972 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61.
#
@@ -15624,6 +15624,8 @@
fi
+if test "${cross_compiling}" = "no";
+then
{ echo "$as_me:$LINENO: checking for working epoll support" >&5
echo $ECHO_N "checking for working epoll support... $ECHO_C" >&6; }
cat >conftest.$ac_ext <<_ACEOF
@@ -15681,6 +15683,7 @@
rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
conftest$ac_exeext conftest.$ac_ext
+fi
{ echo "$as_me:$LINENO: checking for compiler atomic operations" >&5
echo $ECHO_N "checking for compiler atomic operations... $ECHO_C" >&6; }
Modified: trunk/configure.ac
URL: http://svn.digium.com/view/asterisk/trunk/configure.ac?view=diff&rev=81873&r1=81872&r2=81873
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Fri Sep 7 07:32:04 2007
@@ -332,6 +332,8 @@
AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_PREFER_WRITER_NP], [PTHREAD_RWLOCK_PREFER_WRITER_NP], [pthread.h])
+if test "${cross_compiling}" = "no";
+then
AC_MSG_CHECKING(for working epoll support)
AC_LINK_IFELSE(
AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
@@ -343,6 +345,7 @@
AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
AC_MSG_RESULT(no)
)
+fi
AC_MSG_CHECKING(for compiler atomic operations)
AC_LINK_IFELSE(
More information about the asterisk-commits
mailing list