diff options
author | Joe Orton <jorton@apache.org> | 2003-07-14 09:00:55 +0000 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2003-07-14 09:00:55 +0000 |
commit | c404d99a0c742f70274273a3662a48fe0a8efd6e (patch) | |
tree | a88ab31727c0b8f01679045c85e8c0782965259f /threadproc/unix | |
parent | f5aaa545896a22d85e5aed0891389f12fd65a050 (diff) | |
download | apr-c404d99a0c742f70274273a3662a48fe0a8efd6e.tar.gz apr-c404d99a0c742f70274273a3662a48fe0a8efd6e.zip |
Fix previous commit: HAVE_DECL_* is always defined, to 0 or 1.
Submitted by: Max Bowsher <maxb@ukf.net>
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64569 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix')
-rw-r--r-- | threadproc/unix/signals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/unix/signals.c b/threadproc/unix/signals.c index c2dd2775a..0b7dbc333 100644 --- a/threadproc/unix/signals.c +++ b/threadproc/unix/signals.c @@ -141,7 +141,7 @@ APR_DECLARE(apr_sigfunc_t *) apr_signal(int signo, apr_sigfunc_t * func) /* 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) { |