jorton 2003/07/14 02:00:55
Modified: threadproc/unix signals.c
Log:
Fix previous commit: HAVE_DECL_* is always defined, to 0 or 1.
Submitted by: Max Bowsher <[EMAIL PROTECTED]>
Revision Changes Path
1.55 +1 -1 apr/threadproc/unix/signals.c
Index: signals.c
===================================================================
RCS file: /home/cvs/apr/threadproc/unix/signals.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -u -r1.54 -r1.55
--- signals.c 7 Jul 2003 14:49:48 -0000 1.54
+++ signals.c 14 Jul 2003 09:00:55 -0000 1.55
@@ -141,7 +141,7 @@
/* AC_DECL_SYS_SIGLIST defines either of these symbols depending
* on the version of autoconf used. */
-#if defined(SYS_SIGLIST_DECLARED) || defined(HAVE_DECL_SYS_SIGLIST)
+#if defined(SYS_SIGLIST_DECLARED) || HAVE_DECL_SYS_SIGLIST
void apr_signal_init(apr_pool_t *pglobal)
{