diff options
author | brian <brian@cvs.openbsd.org> | 1997-11-26 01:37:33 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 1997-11-26 01:37:33 +0000 |
commit | 4276f3122c07ed72c1edc5fd36a2f4b7ab026ae4 (patch) | |
tree | 7545f8bc55dee6b40680597ebca04ca230972e7e | |
parent | 43eb52884f58f1a169c54eaa25008e59cca542f2 (diff) |
Don't look for /usr/include/alias.h in the Makefile,
expect ``make -DHAVE_LIBALIAS'' instead.
alias.h poo poo'd by: Theo
-rw-r--r-- | usr.sbin/ppp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/Makefile b/usr.sbin/ppp/Makefile index f9dbc19e38e..6ca20f0867d 100644 --- a/usr.sbin/ppp/Makefile +++ b/usr.sbin/ppp/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.1 1997/11/23 20:27:32 brian Exp $ +# $Id: Makefile,v 1.2 1997/11/26 01:37:32 brian Exp $ PROG= ppp SRCS= arp.c async.c auth.c ccp.c chap.c chap_ms.c chat.c \ @@ -14,7 +14,7 @@ BINMODE=4550 BINOWN= root BINGRP= network -.if exists(/usr/include/alias.h) +.if defined(HAVE_LIBALIAS) SRCS+= alias_cmd.c loadalias.c .else CFLAGS+=-DNOALIAS |