X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2FMakefile.linux;h=933309697356a0dd19b90ecd09a1e62de1d405a7;hp=ebe703e0386e1a04ff8f0fa6ac317c392ceddea6;hb=9164ea8da8dd803c9c8a34bb2bab7742669f65de;hpb=44519186aa042ac91b0220f31ee0a7e695df19b5 diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index ebe703e..9333096 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -1,6 +1,6 @@ # # pppd makefile for Linux -# $Id: Makefile.linux,v 1.16 1996/09/26 06:19:57 paulus Exp $ +# $Id: Makefile.linux,v 1.19 1997/03/04 03:35:05 paulus Exp $ # # Default installation locations @@ -8,10 +8,10 @@ BINDIR = /usr/sbin MANDIR = /usr/man PPPDSRCS = main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c ccp.c \ - ipxcp.c auth.c options.c sys-linux.c md4.c chap_ms.c \ + ipxcp.c auth.c options.c sys-linux.c md4.c chap_ms.c cbcp.c \ demand.c HEADERS = callout.h pathnames.h patchlevel.h chap.h md5.h chap_ms.h md4.h \ - ipxcp.h + ipxcp.h cbcp.h MANPAGES = pppd.8 PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o \ auth.o options.o demand.o sys-linux.o ipxcp.o @@ -28,7 +28,7 @@ endif # COPTS = -O2 # -g VER = 2.3.0 -LIBS = -lc -lbsd +LIBS = -lcrypt -lbsd # The INCLUDE_DIRS must include the standard headers before the local # ones. If you just had -I.. then the order would be reversed. So, use @@ -40,14 +40,27 @@ COMPILE_FLAGS= -D_linux_=1 -DHAVE_PATHS_H -DIPX_CHANGE CFLAGS= $(COPTS) $(COMPILE_FLAGS) $(INCLUDE_DIRS) +ifdef CHAPMS +CFLAGS += -DCHAPMS=1 +LIBS := -ldes $(LIBS) +PPPDOBJS += md4.o chap_ms.o +endif + ifdef HAS_SHADOW CFLAGS += -DHAS_SHADOW -LIBS += -lshadow +LIBS := -lshadow -lcrypt $(LIBS) endif +# For "Pluggable Authentication Modules", see ftp.redhat.com:/pub/pam/. ifdef USE_PAM CFLAGS += -DUSE_PAM -LIBS += -lpam -ldl +LIBS := -lpam -ldl $(LIBS) +endif + +# Lock library binary for Linux is included in 'linux' subdirectory. +ifdef LOCKLIB +LIBS := -llock $(LIBS) +CFLAGS += -DLOCKLIB=1 endif install: pppd