[llvm] r244014 - Remove autoconf checks for sigsetjmp and siglongjmp as they appear to
Eric Christopher
echristo at gmail.com
Tue Aug 4 21:50:46 PDT 2015
Author: echristo
Date: Tue Aug 4 23:50:46 2015
New Revision: 244014
URL: http://llvm.org/viewvc/llvm-project?rev=244014&view=rev
Log:
Remove autoconf checks for sigsetjmp and siglongjmp as they appear to
be unused.
Modified:
llvm/trunk/autoconf/configure.ac
llvm/trunk/configure
llvm/trunk/include/llvm/Config/config.h.in
Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=244014&r1=244013&r2=244014&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Tue Aug 4 23:50:46 2015
@@ -1873,7 +1873,7 @@ AC_CHECK_FUNCS([isatty mkdtemp mkstemp ]
AC_CHECK_FUNCS([mktemp posix_spawn pread realpath sbrk setrlimit ])
AC_CHECK_FUNCS([strerror strerror_r setenv ])
AC_CHECK_FUNCS([strtoll strtoq sysconf malloc_zone_statistics ])
-AC_CHECK_FUNCS([setjmp longjmp sigsetjmp siglongjmp writev])
+AC_CHECK_FUNCS([setjmp longjmp writev])
AC_CHECK_FUNCS([futimes futimens])
AC_C_PRINTF_A
Modified: llvm/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=244014&r1=244013&r2=244014&view=diff
==============================================================================
--- llvm/trunk/configure (original)
+++ llvm/trunk/configure Tue Aug 4 23:50:46 2015
@@ -14360,9 +14360,7 @@ done
-
-
-for ac_func in setjmp longjmp sigsetjmp siglongjmp writev
+for ac_func in setjmp longjmp writev
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
{ echo "$as_me:$LINENO: checking for $ac_func" >&5
Modified: llvm/trunk/include/llvm/Config/config.h.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Config/config.h.in?rev=244014&r1=244013&r2=244014&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Config/config.h.in (original)
+++ llvm/trunk/include/llvm/Config/config.h.in Tue Aug 4 23:50:46 2015
@@ -244,15 +244,9 @@
/* Define to 1 if you have the `setrlimit' function. */
#undef HAVE_SETRLIMIT
-/* Define to 1 if you have the `siglongjmp' function. */
-#undef HAVE_SIGLONGJMP
-
/* Define to 1 if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H
-/* Define to 1 if you have the `sigsetjmp' function. */
-#undef HAVE_SIGSETJMP
-
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
More information about the llvm-commits
mailing list