mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-05 09:14:03 +00:00
Most of the ``modified'' files really aren't. This is my (simple)
port of pppd.
This commit is contained in:
parent
254915e9ab
commit
d8269a163d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3072
14
usr.sbin/pppd/Makefile
Normal file
14
usr.sbin/pppd/Makefile
Normal file
@ -0,0 +1,14 @@
|
||||
# From: Id: Makefile.bsd,v 1.4 1994/04/20 00:07:50 paulus Exp
|
||||
# $Id$
|
||||
|
||||
PROG= pppd
|
||||
SRCS= main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c \
|
||||
auth.c options.c lock.c sys-bsd.c
|
||||
MAN8= pppd.8
|
||||
BINMODE=4555
|
||||
BINOWN= root
|
||||
|
||||
LDADD= -lcrypt -lutil
|
||||
DPADD= ${LIBCRYPT} ${LIBUTIL}
|
||||
|
||||
.include <bsd.prog.mk>
|
@ -25,7 +25,9 @@ static char rcsid[] = "$Id: options.c,v 1.10 1994/05/27 00:43:34 paulus Exp $";
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
#define devname STDLIB_devname
|
||||
#include <stdlib.h>
|
||||
#undef devname
|
||||
#include <termios.h>
|
||||
#include <syslog.h>
|
||||
#include <string.h>
|
||||
@ -53,7 +55,7 @@ char *strdup __ARGS((char *));
|
||||
#endif
|
||||
|
||||
#ifndef GIDSET_TYPE
|
||||
#define GIDSET_TYPE int
|
||||
#define GIDSET_TYPE gid_t
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user