|
From: <sv...@va...> - 2010-10-08 18:58:54
|
Author: bart Date: 2010-10-08 19:58:44 +0100 (Fri, 08 Oct 2010) New Revision: 11417 Log: Removed the configure test for __builtin_frame_address() again because it is no longer necessary. Modified: trunk/configure.in Modified: trunk/configure.in =================================================================== --- trunk/configure.in 2010-10-08 17:43:26 UTC (rev 11416) +++ trunk/configure.in 2010-10-08 18:58:44 UTC (rev 11417) @@ -1888,29 +1888,6 @@ AM_CONDITIONAL([HAVE_BUILTIN_ATOMIC], [test x$ac_have_builtin_atomic = xyes]) -# Check for __builtin_frame_address() support -AC_MSG_CHECKING([if gcc supports __builtin_frame_address]) - -AC_TRY_COMPILE( -[ -], [ - __builtin_frame_address(0); - return 0; -], -[ -ac_have_builtin_frame_address=yes -AC_MSG_RESULT([yes]) -AC_DEFINE([HAVE_BUILTIN_FRAME_ADDRESS], 1, - [Define to 1 if your compiler supports __builtin_frame_address.]) -], [ -ac_have_builtin_frame_address=no -AC_MSG_RESULT([no]) -]) -CFLAGS=$safe_CFLAGS - -AM_CONDITIONAL(HAVE_BUILTIN_FRAME_ADDRESS, - test x$ac_have_builtin_frame_address = xyes) - #---------------------------------------------------------------------------- # Ok. We're done checking. #---------------------------------------------------------------------------- |