Mercurial > hg > xemacs-beta
diff 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 |
line wrap: on
line diff
--- a/src/sysdep.c Sat May 07 21:51:11 2005 +0000 +++ b/src/sysdep.c Sun May 08 11:37:42 2005 +0000 @@ -3829,7 +3829,7 @@ /* Strings corresponding to defined signals */ /************************************************************************/ -#if !defined (SYS_SIGLIST_DECLARED) && !defined (HAVE_SYS_SIGLIST) +#if (!defined(HAVE_DECL_SYS_SIGLIST) || !HAVE_DECL_SYS_SIGLIST ) && !defined (HAVE_SYS_SIGLIST) #if defined(WIN32_NATIVE) || defined(CYGWIN) const char *sys_siglist[] = @@ -4031,7 +4031,7 @@ }; #endif /* DGUX */ -#endif /* ! SYS_SIGLIST_DECLARED && ! HAVE_SYS_SIGLIST */ +#endif /* (!defined(HAVE_DECL_SYS_SIGLIST) || !HAVE_DECL_SYS_SIGLIST ) && !defined (HAVE_SYS_SIGLIST) */ /************************************************************************/