diff options
| author | Glenn Morris | 2012-09-15 06:17:37 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-09-15 06:17:37 -0400 |
| commit | e2d8f316d16ddcc7aafa071344a2460d5e7d373d (patch) | |
| tree | f7e3ac36222f72fccd087fe28d90636f703af151 | |
| parent | 39a57ad07b0521dd6dbcae9cd4996366aa59e1ba (diff) | |
| download | emacs-e2d8f316d16ddcc7aafa071344a2460d5e7d373d.tar.gz emacs-e2d8f316d16ddcc7aafa071344a2460d5e7d373d.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/config.in | 15 | ||||
| -rwxr-xr-x | autogen/configure | 128 |
2 files changed, 95 insertions, 48 deletions
diff --git a/autogen/config.in b/autogen/config.in index f8e4c2bcce3..39e948ee228 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -791,6 +791,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 791 | /* Define to 1 if 'wint_t' is a signed integer type. */ | 791 | /* Define to 1 if 'wint_t' is a signed integer type. */ |
| 792 | #undef HAVE_SIGNED_WINT_T | 792 | #undef HAVE_SIGNED_WINT_T |
| 793 | 793 | ||
| 794 | /* Define to 1 if sigsetjmp and siglongjmp work. The value of this symbol is | ||
| 795 | irrelevant if HAVE__SETJMP is defined. */ | ||
| 796 | #undef HAVE_SIGSETJMP | ||
| 797 | |||
| 794 | /* Define to 1 if the system has the type `sigset_t'. */ | 798 | /* Define to 1 if the system has the type `sigset_t'. */ |
| 795 | #undef HAVE_SIGSET_T | 799 | #undef HAVE_SIGSET_T |
| 796 | 800 | ||
| @@ -1074,6 +1078,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1074 | /* Define to 1 if you have the `_ftime' function. */ | 1078 | /* Define to 1 if you have the `_ftime' function. */ |
| 1075 | #undef HAVE__FTIME | 1079 | #undef HAVE__FTIME |
| 1076 | 1080 | ||
| 1081 | /* Define to 1 if _setjmp and _longjmp work. */ | ||
| 1082 | #undef HAVE__SETJMP | ||
| 1083 | |||
| 1077 | /* Define to 1 if you have the `__builtin_unwind_init' function. */ | 1084 | /* Define to 1 if you have the `__builtin_unwind_init' function. */ |
| 1078 | #undef HAVE___BUILTIN_UNWIND_INIT | 1085 | #undef HAVE___BUILTIN_UNWIND_INIT |
| 1079 | 1086 | ||
| @@ -1502,14 +1509,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1502 | declarations. Define as empty for no equivalent. */ | 1509 | declarations. Define as empty for no equivalent. */ |
| 1503 | #undef __restrict_arr | 1510 | #undef __restrict_arr |
| 1504 | 1511 | ||
| 1505 | /* Define to longjmp if _setjmp and _longjmp do not work. Because longjmp may | ||
| 1506 | alter signal masks, callers of _longjmp should not assume that it leaves | ||
| 1507 | signal masks alone. */ | ||
| 1508 | #undef _longjmp | ||
| 1509 | |||
| 1510 | /* Define to setjmp if _setjmp and _longjmp do not work. See _longjmp. */ | ||
| 1511 | #undef _setjmp | ||
| 1512 | |||
| 1513 | /* Some platforms that do not use configure define this to include extra | 1512 | /* Some platforms that do not use configure define this to include extra |
| 1514 | configuration information. */ | 1513 | configuration information. */ |
| 1515 | #undef config_opsysfile | 1514 | #undef config_opsysfile |
diff --git a/autogen/configure b/autogen/configure index 63295f68db0..0cbdd7c732a 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -2061,7 +2061,7 @@ Optional Packages: | |||
| 2061 | --with-mailhost=HOSTNAME | 2061 | --with-mailhost=HOSTNAME |
| 2062 | string giving default POP mail host | 2062 | string giving default POP mail host |
| 2063 | --without-sound don't compile with sound support | 2063 | --without-sound don't compile with sound support |
| 2064 | --without-sync-input process async input synchronously | 2064 | --without-sync-input don't process async input synchronously |
| 2065 | --with-x-toolkit=KIT use an X toolkit (KIT one of: yes or gtk, gtk2, | 2065 | --with-x-toolkit=KIT use an X toolkit (KIT one of: yes or gtk, gtk2, |
| 2066 | gtk3, lucid or athena, motif, no) | 2066 | gtk3, lucid or athena, motif, no) |
| 2067 | --with-wide-int prefer wide Emacs integers (typically 62-bit) | 2067 | --with-wide-int prefer wide Emacs integers (typically 62-bit) |
| @@ -8578,8 +8578,9 @@ $as_echo "no" >&6; } | |||
| 8578 | ALSA_CFLAGS="" | 8578 | ALSA_CFLAGS="" |
| 8579 | ALSA_LIBS="" | 8579 | ALSA_LIBS="" |
| 8580 | ## If we have a custom action on failure, don't print errors, but | 8580 | ## If we have a custom action on failure, don't print errors, but |
| 8581 | ## do set a variable so people can do so. | 8581 | ## do set a variable so people can do so. Do it in a subshell |
| 8582 | ALSA_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$ALSA_MODULES"` | 8582 | ## to capture any diagnostics in invoking pkg-config. |
| 8583 | ALSA_PKG_ERRORS=`($PKG_CONFIG --print-errors "$ALSA_MODULES") 2>&1` | ||
| 8583 | 8584 | ||
| 8584 | fi | 8585 | fi |
| 8585 | 8586 | ||
| @@ -10398,8 +10399,9 @@ $as_echo "no" >&6; } | |||
| 10398 | RSVG_CFLAGS="" | 10399 | RSVG_CFLAGS="" |
| 10399 | RSVG_LIBS="" | 10400 | RSVG_LIBS="" |
| 10400 | ## If we have a custom action on failure, don't print errors, but | 10401 | ## If we have a custom action on failure, don't print errors, but |
| 10401 | ## do set a variable so people can do so. | 10402 | ## do set a variable so people can do so. Do it in a subshell |
| 10402 | RSVG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$RSVG_MODULE"` | 10403 | ## to capture any diagnostics in invoking pkg-config. |
| 10404 | RSVG_PKG_ERRORS=`($PKG_CONFIG --print-errors "$RSVG_MODULE") 2>&1` | ||
| 10403 | 10405 | ||
| 10404 | fi | 10406 | fi |
| 10405 | 10407 | ||
| @@ -10468,8 +10470,9 @@ $as_echo "no" >&6; } | |||
| 10468 | IMAGEMAGICK_CFLAGS="" | 10470 | IMAGEMAGICK_CFLAGS="" |
| 10469 | IMAGEMAGICK_LIBS="" | 10471 | IMAGEMAGICK_LIBS="" |
| 10470 | ## If we have a custom action on failure, don't print errors, but | 10472 | ## If we have a custom action on failure, don't print errors, but |
| 10471 | ## do set a variable so people can do so. | 10473 | ## do set a variable so people can do so. Do it in a subshell |
| 10472 | IMAGEMAGICK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$IMAGEMAGICK_MODULE"` | 10474 | ## to capture any diagnostics in invoking pkg-config. |
| 10475 | IMAGEMAGICK_PKG_ERRORS=`($PKG_CONFIG --print-errors "$IMAGEMAGICK_MODULE") 2>&1` | ||
| 10473 | 10476 | ||
| 10474 | fi | 10477 | fi |
| 10475 | 10478 | ||
| @@ -10554,8 +10557,9 @@ $as_echo "no" >&6; } | |||
| 10554 | GTK_CFLAGS="" | 10557 | GTK_CFLAGS="" |
| 10555 | GTK_LIBS="" | 10558 | GTK_LIBS="" |
| 10556 | ## If we have a custom action on failure, don't print errors, but | 10559 | ## If we have a custom action on failure, don't print errors, but |
| 10557 | ## do set a variable so people can do so. | 10560 | ## do set a variable so people can do so. Do it in a subshell |
| 10558 | GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$GTK_MODULES"` | 10561 | ## to capture any diagnostics in invoking pkg-config. |
| 10562 | GTK_PKG_ERRORS=`($PKG_CONFIG --print-errors "$GTK_MODULES") 2>&1` | ||
| 10559 | 10563 | ||
| 10560 | fi | 10564 | fi |
| 10561 | 10565 | ||
| @@ -10624,8 +10628,9 @@ $as_echo "no" >&6; } | |||
| 10624 | GTK_CFLAGS="" | 10628 | GTK_CFLAGS="" |
| 10625 | GTK_LIBS="" | 10629 | GTK_LIBS="" |
| 10626 | ## If we have a custom action on failure, don't print errors, but | 10630 | ## If we have a custom action on failure, don't print errors, but |
| 10627 | ## do set a variable so people can do so. | 10631 | ## do set a variable so people can do so. Do it in a subshell |
| 10628 | GTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$GTK_MODULES"` | 10632 | ## to capture any diagnostics in invoking pkg-config. |
| 10633 | GTK_PKG_ERRORS=`($PKG_CONFIG --print-errors "$GTK_MODULES") 2>&1` | ||
| 10629 | 10634 | ||
| 10630 | fi | 10635 | fi |
| 10631 | 10636 | ||
| @@ -10643,10 +10648,10 @@ $as_echo "no" >&6; } | |||
| 10643 | pkg_check_gtk=no | 10648 | pkg_check_gtk=no |
| 10644 | fi | 10649 | fi |
| 10645 | 10650 | ||
| 10646 | if test "$pkg_check_gtk" = "no"; then | 10651 | if test "$pkg_check_gtk" = "no" && |
| 10647 | if test "$USE_X_TOOLKIT" = "maybe" || test "$with_gtk" = "yes" || test "$with_gtk2" = "yes"; then | 10652 | { test "$with_gtk" = yes || test "$with_gtk2" = "yes"; } |
| 10648 | as_fn_error "$gtk3_pkg_errors$GTK_PKG_ERRORS" "$LINENO" 5 | 10653 | then |
| 10649 | fi | 10654 | as_fn_error "$gtk3_pkg_errors$GTK_PKG_ERRORS" "$LINENO" 5 |
| 10650 | fi | 10655 | fi |
| 10651 | fi | 10656 | fi |
| 10652 | 10657 | ||
| @@ -10785,8 +10790,9 @@ $as_echo "no" >&6; } | |||
| 10785 | DBUS_CFLAGS="" | 10790 | DBUS_CFLAGS="" |
| 10786 | DBUS_LIBS="" | 10791 | DBUS_LIBS="" |
| 10787 | ## If we have a custom action on failure, don't print errors, but | 10792 | ## If we have a custom action on failure, don't print errors, but |
| 10788 | ## do set a variable so people can do so. | 10793 | ## do set a variable so people can do so. Do it in a subshell |
| 10789 | DBUS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "dbus-1 >= 1.0"` | 10794 | ## to capture any diagnostics in invoking pkg-config. |
| 10795 | DBUS_PKG_ERRORS=`($PKG_CONFIG --print-errors "dbus-1 >= 1.0") 2>&1` | ||
| 10790 | 10796 | ||
| 10791 | fi | 10797 | fi |
| 10792 | 10798 | ||
| @@ -10865,8 +10871,9 @@ $as_echo "no" >&6; } | |||
| 10865 | GSETTINGS_CFLAGS="" | 10871 | GSETTINGS_CFLAGS="" |
| 10866 | GSETTINGS_LIBS="" | 10872 | GSETTINGS_LIBS="" |
| 10867 | ## If we have a custom action on failure, don't print errors, but | 10873 | ## If we have a custom action on failure, don't print errors, but |
| 10868 | ## do set a variable so people can do so. | 10874 | ## do set a variable so people can do so. Do it in a subshell |
| 10869 | GSETTINGS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gio-2.0 >= 2.26"` | 10875 | ## to capture any diagnostics in invoking pkg-config. |
| 10876 | GSETTINGS_PKG_ERRORS=`($PKG_CONFIG --print-errors "gio-2.0 >= 2.26") 2>&1` | ||
| 10870 | 10877 | ||
| 10871 | fi | 10878 | fi |
| 10872 | 10879 | ||
| @@ -10926,8 +10933,9 @@ $as_echo "no" >&6; } | |||
| 10926 | GCONF_CFLAGS="" | 10933 | GCONF_CFLAGS="" |
| 10927 | GCONF_LIBS="" | 10934 | GCONF_LIBS="" |
| 10928 | ## If we have a custom action on failure, don't print errors, but | 10935 | ## If we have a custom action on failure, don't print errors, but |
| 10929 | ## do set a variable so people can do so. | 10936 | ## do set a variable so people can do so. Do it in a subshell |
| 10930 | GCONF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gconf-2.0 >= 2.13"` | 10937 | ## to capture any diagnostics in invoking pkg-config. |
| 10938 | GCONF_PKG_ERRORS=`($PKG_CONFIG --print-errors "gconf-2.0 >= 2.13") 2>&1` | ||
| 10931 | 10939 | ||
| 10932 | fi | 10940 | fi |
| 10933 | 10941 | ||
| @@ -10986,8 +10994,9 @@ $as_echo "no" >&6; } | |||
| 10986 | GOBJECT_CFLAGS="" | 10994 | GOBJECT_CFLAGS="" |
| 10987 | GOBJECT_LIBS="" | 10995 | GOBJECT_LIBS="" |
| 10988 | ## If we have a custom action on failure, don't print errors, but | 10996 | ## If we have a custom action on failure, don't print errors, but |
| 10989 | ## do set a variable so people can do so. | 10997 | ## do set a variable so people can do so. Do it in a subshell |
| 10990 | GOBJECT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gobject-2.0 >= 2.0"` | 10998 | ## to capture any diagnostics in invoking pkg-config. |
| 10999 | GOBJECT_PKG_ERRORS=`($PKG_CONFIG --print-errors "gobject-2.0 >= 2.0") 2>&1` | ||
| 10991 | 11000 | ||
| 10992 | fi | 11001 | fi |
| 10993 | 11002 | ||
| @@ -11119,8 +11128,9 @@ $as_echo "no" >&6; } | |||
| 11119 | LIBGNUTLS_CFLAGS="" | 11128 | LIBGNUTLS_CFLAGS="" |
| 11120 | LIBGNUTLS_LIBS="" | 11129 | LIBGNUTLS_LIBS="" |
| 11121 | ## If we have a custom action on failure, don't print errors, but | 11130 | ## If we have a custom action on failure, don't print errors, but |
| 11122 | ## do set a variable so people can do so. | 11131 | ## do set a variable so people can do so. Do it in a subshell |
| 11123 | LIBGNUTLS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gnutls >= 2.6.6"` | 11132 | ## to capture any diagnostics in invoking pkg-config. |
| 11133 | LIBGNUTLS_PKG_ERRORS=`($PKG_CONFIG --print-errors "gnutls >= 2.6.6") 2>&1` | ||
| 11124 | 11134 | ||
| 11125 | fi | 11135 | fi |
| 11126 | 11136 | ||
| @@ -11748,8 +11758,9 @@ $as_echo "no" >&6; } | |||
| 11748 | FONTCONFIG_CFLAGS="" | 11758 | FONTCONFIG_CFLAGS="" |
| 11749 | FONTCONFIG_LIBS="" | 11759 | FONTCONFIG_LIBS="" |
| 11750 | ## If we have a custom action on failure, don't print errors, but | 11760 | ## If we have a custom action on failure, don't print errors, but |
| 11751 | ## do set a variable so people can do so. | 11761 | ## do set a variable so people can do so. Do it in a subshell |
| 11752 | FONTCONFIG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "fontconfig >= 2.2.0"` | 11762 | ## to capture any diagnostics in invoking pkg-config. |
| 11763 | FONTCONFIG_PKG_ERRORS=`($PKG_CONFIG --print-errors "fontconfig >= 2.2.0") 2>&1` | ||
| 11753 | 11764 | ||
| 11754 | fi | 11765 | fi |
| 11755 | 11766 | ||
| @@ -11806,8 +11817,9 @@ $as_echo "no" >&6; } | |||
| 11806 | XFT_CFLAGS="" | 11817 | XFT_CFLAGS="" |
| 11807 | XFT_LIBS="" | 11818 | XFT_LIBS="" |
| 11808 | ## If we have a custom action on failure, don't print errors, but | 11819 | ## If we have a custom action on failure, don't print errors, but |
| 11809 | ## do set a variable so people can do so. | 11820 | ## do set a variable so people can do so. Do it in a subshell |
| 11810 | XFT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "xft >= 0.13.0"` | 11821 | ## to capture any diagnostics in invoking pkg-config. |
| 11822 | XFT_PKG_ERRORS=`($PKG_CONFIG --print-errors "xft >= 0.13.0") 2>&1` | ||
| 11811 | 11823 | ||
| 11812 | fi | 11824 | fi |
| 11813 | 11825 | ||
| @@ -11973,8 +11985,9 @@ $as_echo "no" >&6; } | |||
| 11973 | FREETYPE_CFLAGS="" | 11985 | FREETYPE_CFLAGS="" |
| 11974 | FREETYPE_LIBS="" | 11986 | FREETYPE_LIBS="" |
| 11975 | ## If we have a custom action on failure, don't print errors, but | 11987 | ## If we have a custom action on failure, don't print errors, but |
| 11976 | ## do set a variable so people can do so. | 11988 | ## do set a variable so people can do so. Do it in a subshell |
| 11977 | FREETYPE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "freetype2"` | 11989 | ## to capture any diagnostics in invoking pkg-config. |
| 11990 | FREETYPE_PKG_ERRORS=`($PKG_CONFIG --print-errors "freetype2") 2>&1` | ||
| 11978 | 11991 | ||
| 11979 | fi | 11992 | fi |
| 11980 | 11993 | ||
| @@ -12033,8 +12046,9 @@ $as_echo "no" >&6; } | |||
| 12033 | LIBOTF_CFLAGS="" | 12046 | LIBOTF_CFLAGS="" |
| 12034 | LIBOTF_LIBS="" | 12047 | LIBOTF_LIBS="" |
| 12035 | ## If we have a custom action on failure, don't print errors, but | 12048 | ## If we have a custom action on failure, don't print errors, but |
| 12036 | ## do set a variable so people can do so. | 12049 | ## do set a variable so people can do so. Do it in a subshell |
| 12037 | LIBOTF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libotf"` | 12050 | ## to capture any diagnostics in invoking pkg-config. |
| 12051 | LIBOTF_PKG_ERRORS=`($PKG_CONFIG --print-errors "libotf") 2>&1` | ||
| 12038 | 12052 | ||
| 12039 | fi | 12053 | fi |
| 12040 | 12054 | ||
| @@ -12141,8 +12155,9 @@ $as_echo "no" >&6; } | |||
| 12141 | M17N_FLT_CFLAGS="" | 12155 | M17N_FLT_CFLAGS="" |
| 12142 | M17N_FLT_LIBS="" | 12156 | M17N_FLT_LIBS="" |
| 12143 | ## If we have a custom action on failure, don't print errors, but | 12157 | ## If we have a custom action on failure, don't print errors, but |
| 12144 | ## do set a variable so people can do so. | 12158 | ## do set a variable so people can do so. Do it in a subshell |
| 12145 | M17N_FLT_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "m17n-flt"` | 12159 | ## to capture any diagnostics in invoking pkg-config. |
| 12160 | M17N_FLT_PKG_ERRORS=`($PKG_CONFIG --print-errors "m17n-flt") 2>&1` | ||
| 12146 | 12161 | ||
| 12147 | fi | 12162 | fi |
| 12148 | 12163 | ||
| @@ -12830,8 +12845,9 @@ $as_echo "no" >&6; } | |||
| 12830 | LIBXML2_CFLAGS="" | 12845 | LIBXML2_CFLAGS="" |
| 12831 | LIBXML2_LIBS="" | 12846 | LIBXML2_LIBS="" |
| 12832 | ## If we have a custom action on failure, don't print errors, but | 12847 | ## If we have a custom action on failure, don't print errors, but |
| 12833 | ## do set a variable so people can do so. | 12848 | ## do set a variable so people can do so. Do it in a subshell |
| 12834 | LIBXML2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libxml-2.0 > 2.6.17"` | 12849 | ## to capture any diagnostics in invoking pkg-config. |
| 12850 | LIBXML2_PKG_ERRORS=`($PKG_CONFIG --print-errors "libxml-2.0 > 2.6.17") 2>&1` | ||
| 12835 | 12851 | ||
| 12836 | fi | 12852 | fi |
| 12837 | 12853 | ||
| @@ -15461,13 +15477,45 @@ rm -f core conftest.err conftest.$ac_objext \ | |||
| 15461 | fi | 15477 | fi |
| 15462 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $emacs_cv_func__setjmp" >&5 | 15478 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $emacs_cv_func__setjmp" >&5 |
| 15463 | $as_echo "$emacs_cv_func__setjmp" >&6; } | 15479 | $as_echo "$emacs_cv_func__setjmp" >&6; } |
| 15464 | if test $emacs_cv_func__setjmp = no; then | 15480 | if test $emacs_cv_func__setjmp = yes; then |
| 15465 | 15481 | ||
| 15466 | $as_echo "#define _setjmp setjmp" >>confdefs.h | 15482 | $as_echo "#define HAVE__SETJMP 1" >>confdefs.h |
| 15467 | 15483 | ||
| 15484 | else | ||
| 15485 | { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sigsetjmp" >&5 | ||
| 15486 | $as_echo_n "checking for sigsetjmp... " >&6; } | ||
| 15487 | if test "${emacs_cv_func_sigsetjmp+set}" = set; then : | ||
| 15488 | $as_echo_n "(cached) " >&6 | ||
| 15489 | else | ||
| 15490 | cat confdefs.h - <<_ACEOF >conftest.$ac_ext | ||
| 15491 | /* end confdefs.h. */ | ||
| 15492 | #include <setjmp.h> | ||
| 15493 | |||
| 15494 | int | ||
| 15495 | main () | ||
| 15496 | { | ||
| 15497 | sigjmp_buf j; | ||
| 15498 | if (! sigsetjmp (j, 1)) | ||
| 15499 | siglongjmp (j, 1); | ||
| 15500 | ; | ||
| 15501 | return 0; | ||
| 15502 | } | ||
| 15503 | _ACEOF | ||
| 15504 | if ac_fn_c_try_link "$LINENO"; then : | ||
| 15505 | emacs_cv_func_sigsetjmp=yes | ||
| 15506 | else | ||
| 15507 | emacs_cv_func_sigsetjmp=no | ||
| 15508 | fi | ||
| 15509 | rm -f core conftest.err conftest.$ac_objext \ | ||
| 15510 | conftest$ac_exeext conftest.$ac_ext | ||
| 15511 | fi | ||
| 15512 | { $as_echo "$as_me:${as_lineno-$LINENO}: result: $emacs_cv_func_sigsetjmp" >&5 | ||
| 15513 | $as_echo "$emacs_cv_func_sigsetjmp" >&6; } | ||
| 15514 | if test $emacs_cv_func_sigsetjmp = yes; then | ||
| 15468 | 15515 | ||
| 15469 | $as_echo "#define _longjmp longjmp" >>confdefs.h | 15516 | $as_echo "#define HAVE_SIGSETJMP 1" >>confdefs.h |
| 15470 | 15517 | ||
| 15518 | fi | ||
| 15471 | fi | 15519 | fi |
| 15472 | 15520 | ||
| 15473 | case $opsys in | 15521 | case $opsys in |