diff options
author | peter <peter@FreeBSD.org> | 2003-10-26 04:26:52 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-10-26 04:26:52 +0000 |
commit | 9ff77005b4a5829dfd583c11eabf4b6617ffbf37 (patch) | |
tree | d0e8ee46fcb15cc0da011a7c3b4e30d9dc456119 /gnu/usr.bin/rcs | |
parent | ad3ca1dde1ef44d1d212bc14f4610fd7015af23d (diff) | |
download | FreeBSD-src-9ff77005b4a5829dfd583c11eabf4b6617ffbf37.zip FreeBSD-src-9ff77005b4a5829dfd583c11eabf4b6617ffbf37.tar.gz |
Fix some warnings by defining has_sa_sigaction to 1. When the configure
script was run (years and years ago), we didn't have it.
Diffstat (limited to 'gnu/usr.bin/rcs')
-rw-r--r-- | gnu/usr.bin/rcs/lib/conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/rcs/lib/conf.h b/gnu/usr.bin/rcs/lib/conf.h index d4be917..96ec07d 100644 --- a/gnu/usr.bin/rcs/lib/conf.h +++ b/gnu/usr.bin/rcs/lib/conf.h @@ -159,7 +159,7 @@ #define has_setreuid 0 /* Does setreuid() work? See ../INSTALL.RCS. */ #define has_setuid 1 /* Does setuid() exist? */ #define has_sigaction 1 /* Does struct sigaction work? */ -#define has_sa_sigaction 0 /* Does struct sigaction have sa_sigaction? */ +#define has_sa_sigaction 1 /* Does struct sigaction have sa_sigaction? */ #define has_signal 1 /* Does signal() work? */ #define signal_type void /* type returned by signal handlers */ #define sig_zaps_handler 0 /* Must a signal handler reinvoke signal()? */ |