2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

1341. [port] linux: Slackware 4.0 needs <asm/unistd.h>.

This commit is contained in:
Mark Andrews 2002-07-03 05:09:43 +00:00
parent 7a2bd9c065
commit 0f8f42a09e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,5 @@
1341. [port] linux: Slackware 4.0 needs <asm/unistd.h>.
1342. [bug] dnssec-signzone usage message was misleading.
1341. [bug] If the last RRset in a zone is glue, dnssec-signzone

View File

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: os.c,v 1.58 2002/05/03 05:28:25 marka Exp $ */
/* $Id: os.c,v 1.59 2002/07/03 05:09:43 marka Exp $ */
#include <config.h>
#include <stdarg.h>
@ -132,6 +132,9 @@ static isc_boolean_t non_root_caps = ISC_FALSE;
#endif /* HAVE_SYS_PRCTL_H */
#ifndef SYS_capset
#ifndef __NR_capset
#include <asm/unistd.h> /* Slackware 4.0 needs this. */
#endif
#define SYS_capset __NR_capset
#endif