Make this build with KERBEROS5 defined.
This commit is contained in:
parent
5e59fee53a
commit
b2f939ac51
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: conf.c,v 1.17 1999/02/05 21:40:49 lukem Exp $ */
|
||||
/* $NetBSD: conf.c,v 1.18 1999/02/24 16:45:13 explorer Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1997 The NetBSD Foundation, Inc.
|
||||
@ -38,7 +38,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: conf.c,v 1.17 1999/02/05 21:40:49 lukem Exp $");
|
||||
__RCSID("$NetBSD: conf.c,v 1.18 1999/02/24 16:45:13 explorer Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/types.h>
|
||||
@ -55,6 +55,10 @@ __RCSID("$NetBSD: conf.c,v 1.17 1999/02/05 21:40:49 lukem Exp $");
|
||||
#include <stringlist.h>
|
||||
#include <syslog.h>
|
||||
|
||||
#ifdef KERBEROS5
|
||||
#include <krb5.h>
|
||||
#endif
|
||||
|
||||
#include "extern.h"
|
||||
#include "pathnames.h"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ftpcmd.y,v 1.25 1999/02/05 21:40:49 lukem Exp $ */
|
||||
/* $NetBSD: ftpcmd.y,v 1.26 1999/02/24 16:45:13 explorer Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1985, 1988, 1993, 1994
|
||||
@ -47,7 +47,7 @@
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)ftpcmd.y 8.3 (Berkeley) 4/6/94";
|
||||
#else
|
||||
__RCSID("$NetBSD: ftpcmd.y,v 1.25 1999/02/05 21:40:49 lukem Exp $");
|
||||
__RCSID("$NetBSD: ftpcmd.y,v 1.26 1999/02/24 16:45:13 explorer Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
@ -73,6 +73,10 @@ __RCSID("$NetBSD: ftpcmd.y,v 1.25 1999/02/05 21:40:49 lukem Exp $");
|
||||
#include <tzfile.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifdef KERBEROS5
|
||||
#include <krb5.h>
|
||||
#endif
|
||||
|
||||
#include "extern.h"
|
||||
|
||||
off_t restart_point;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: logwtmp.c,v 1.10 1998/12/28 04:54:01 lukem Exp $ */
|
||||
/* $NetBSD: logwtmp.c,v 1.11 1999/02/24 16:45:13 explorer Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988, 1993
|
||||
@ -40,7 +40,7 @@
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)logwtmp.c 8.1 (Berkeley) 6/4/93";
|
||||
#else
|
||||
__RCSID("$NetBSD: logwtmp.c,v 1.10 1998/12/28 04:54:01 lukem Exp $");
|
||||
__RCSID("$NetBSD: logwtmp.c,v 1.11 1999/02/24 16:45:13 explorer Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
@ -56,6 +56,10 @@ __RCSID("$NetBSD: logwtmp.c,v 1.10 1998/12/28 04:54:01 lukem Exp $");
|
||||
#include <unistd.h>
|
||||
#include <utmp.h>
|
||||
|
||||
#ifdef KERBEROS5
|
||||
#include <krb5.h>
|
||||
#endif
|
||||
|
||||
#include "extern.h"
|
||||
|
||||
static int fd = -1;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: popen.c,v 1.12 1998/12/28 04:54:01 lukem Exp $ */
|
||||
/* $NetBSD: popen.c,v 1.13 1999/02/24 16:45:13 explorer Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1988, 1993, 1994
|
||||
@ -42,7 +42,7 @@
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 4/6/94";
|
||||
#else
|
||||
__RCSID("$NetBSD: popen.c,v 1.12 1998/12/28 04:54:01 lukem Exp $");
|
||||
__RCSID("$NetBSD: popen.c,v 1.13 1999/02/24 16:45:13 explorer Exp $");
|
||||
#endif
|
||||
#endif /* not lint */
|
||||
|
||||
@ -57,6 +57,10 @@ __RCSID("$NetBSD: popen.c,v 1.12 1998/12/28 04:54:01 lukem Exp $");
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#ifdef KERBEROS5
|
||||
#include <krb5.h>
|
||||
#endif
|
||||
|
||||
#include "extern.h"
|
||||
|
||||
#define INCR 100
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: util.c,v 1.4 1999/02/05 21:40:49 lukem Exp $ */
|
||||
/* $NetBSD: util.c,v 1.5 1999/02/24 16:45:14 explorer Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
||||
@ -38,7 +38,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: util.c,v 1.4 1999/02/05 21:40:49 lukem Exp $");
|
||||
__RCSID("$NetBSD: util.c,v 1.5 1999/02/24 16:45:14 explorer Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -48,6 +48,10 @@ __RCSID("$NetBSD: util.c,v 1.4 1999/02/05 21:40:49 lukem Exp $");
|
||||
#include <string.h>
|
||||
#include <syslog.h>
|
||||
|
||||
#ifdef KERBEROS5
|
||||
#include <krb5.h>
|
||||
#endif
|
||||
|
||||
#include "extern.h"
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user