comparison src/sysdep.c @ 2762:e20ee26d2313

[xemacs-hg @ 2005-05-08 11:37:41 by malcolmp] sysdep.c: Use autoconf 2.59's HAVE_DECL_SYS_SIGLIST instead of SYS_SIGLIST_DECLARED.
author malcolmp
date Sun, 08 May 2005 11:37:42 +0000
parents 902d5bd9b75c
children a25c824ed558
comparison
equal deleted inserted replaced
2761:07308fca1ea7 2762:e20ee26d2313
3827 3827
3828 /************************************************************************/ 3828 /************************************************************************/
3829 /* Strings corresponding to defined signals */ 3829 /* Strings corresponding to defined signals */
3830 /************************************************************************/ 3830 /************************************************************************/
3831 3831
3832 #if !defined (SYS_SIGLIST_DECLARED) && !defined (HAVE_SYS_SIGLIST) 3832 #if (!defined(HAVE_DECL_SYS_SIGLIST) || !HAVE_DECL_SYS_SIGLIST ) && !defined (HAVE_SYS_SIGLIST)
3833 3833
3834 #if defined(WIN32_NATIVE) || defined(CYGWIN) 3834 #if defined(WIN32_NATIVE) || defined(CYGWIN)
3835 const char *sys_siglist[] = 3835 const char *sys_siglist[] =
3836 { 3836 {
3837 /* $$####begin-snarf */ 3837 /* $$####begin-snarf */
4029 /* $$####end-snarf */ 4029 /* $$####end-snarf */
4030 0 4030 0
4031 }; 4031 };
4032 #endif /* DGUX */ 4032 #endif /* DGUX */
4033 4033
4034 #endif /* ! SYS_SIGLIST_DECLARED && ! HAVE_SYS_SIGLIST */ 4034 #endif /* (!defined(HAVE_DECL_SYS_SIGLIST) || !HAVE_DECL_SYS_SIGLIST ) && !defined (HAVE_SYS_SIGLIST) */
4035 4035
4036 4036
4037 /************************************************************************/ 4037 /************************************************************************/
4038 /* Directory routines for systems that don't have them */ 4038 /* Directory routines for systems that don't have them */
4039 /************************************************************************/ 4039 /************************************************************************/