mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-28 01:28:05 -04:00
1341. [port] linux: Slackware 4.0 needs <asm/unistd.h>.
This commit is contained in:
parent
7a2bd9c065
commit
0f8f42a09e
2 changed files with 6 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue