Make this build with KERBEROS5 defined.

This commit is contained in:
explorer 1999-02-24 16:45:13 +00:00
parent 5e59fee53a
commit b2f939ac51
5 changed files with 30 additions and 10 deletions

View File

@ -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. * Copyright (c) 1997 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #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 */ #endif /* not lint */
#include <sys/types.h> #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 <stringlist.h>
#include <syslog.h> #include <syslog.h>
#ifdef KERBEROS5
#include <krb5.h>
#endif
#include "extern.h" #include "extern.h"
#include "pathnames.h" #include "pathnames.h"

View File

@ -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 * Copyright (c) 1985, 1988, 1993, 1994
@ -47,7 +47,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)ftpcmd.y 8.3 (Berkeley) 4/6/94"; static char sccsid[] = "@(#)ftpcmd.y 8.3 (Berkeley) 4/6/94";
#else #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
#endif /* not lint */ #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 <tzfile.h>
#include <unistd.h> #include <unistd.h>
#ifdef KERBEROS5
#include <krb5.h>
#endif
#include "extern.h" #include "extern.h"
off_t restart_point; off_t restart_point;

View File

@ -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 * Copyright (c) 1988, 1993
@ -40,7 +40,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)logwtmp.c 8.1 (Berkeley) 6/4/93"; static char sccsid[] = "@(#)logwtmp.c 8.1 (Berkeley) 6/4/93";
#else #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
#endif /* not lint */ #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 <unistd.h>
#include <utmp.h> #include <utmp.h>
#ifdef KERBEROS5
#include <krb5.h>
#endif
#include "extern.h" #include "extern.h"
static int fd = -1; static int fd = -1;

View File

@ -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 * Copyright (c) 1988, 1993, 1994
@ -42,7 +42,7 @@
#if 0 #if 0
static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 4/6/94"; static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 4/6/94";
#else #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
#endif /* not lint */ #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 <string.h>
#include <unistd.h> #include <unistd.h>
#ifdef KERBEROS5
#include <krb5.h>
#endif
#include "extern.h" #include "extern.h"
#define INCR 100 #define INCR 100

View File

@ -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. * Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -38,7 +38,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #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 */ #endif /* not lint */
#include <sys/param.h> #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 <string.h>
#include <syslog.h> #include <syslog.h>
#ifdef KERBEROS5
#include <krb5.h>
#endif
#include "extern.h" #include "extern.h"
/* /*