Blob Blame History Raw
--- gcl/configure.in.orig	2020-01-31 12:04:01.275571834 -0700
+++ gcl/configure.in	2020-01-31 12:05:00.048631346 -0700
@@ -1853,7 +1853,7 @@ AC_CHECK_HEADERS(dis-asm.h,
 
 #if test $use = "386-linux" ; then
 AC_CHECK_HEADERS(asm/sigcontext.h)
-AC_CHECK_HEADERS(asm/signal.h)
+AC_CHECK_HEADERS(asm/signal.h, [], [], [#define __ASSEMBLY__])
 AC_MSG_CHECKING([for sigcontext])
 AC_COMPILE_IFELSE(
     [AC_LANG_PROGRAM(
@@ -1875,6 +1875,7 @@ AC_COMPILE_IFELSE(
 		     #include <asm/sigcontext.h>
 		     #endif
 		     #ifdef HAVE_ASM_SIGNAL_H          
+		     #define __ASSEMBLY__
 		     #include <asm/signal.h>
 		     #endif
 		 ]],
--- gcl/configure.orig	2020-01-31 12:04:01.274571850 -0700
+++ gcl/configure	2020-01-31 12:05:00.051631298 -0700
@@ -9181,7 +9181,8 @@ done
 
 for ac_header in asm/signal.h
 do :
-  ac_fn_c_check_header_mongrel "$LINENO" "asm/signal.h" "ac_cv_header_asm_signal_h" "$ac_includes_default"
+  ac_fn_c_check_header_compile "$LINENO" "asm/signal.h" "ac_cv_header_asm_signal_h" "#define __ASSEMBLY__
+"
 if test "x$ac_cv_header_asm_signal_h" = xyes; then :
   cat >>confdefs.h <<_ACEOF
 #define HAVE_ASM_SIGNAL_H 1
@@ -9227,6 +9228,7 @@ $as_echo_n "checking for sigcontext... "
 		     #include <asm/sigcontext.h>
 		     #endif
 		     #ifdef HAVE_ASM_SIGNAL_H
+		     #define __ASSEMBLY__
 		     #include <asm/signal.h>
 		     #endif