X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2FMakefile.linux;h=8d320837efa4e9dcbe4c29f11f2a8623b0d5fec4;hp=9a96c9a1c13e2e138fbf6c4e3ab48cfbe50c46f3;hb=50f06d79e6f4c457a68929df21d4c71b9d2dade1;hpb=6f099903b36ddcca0a85753549dad910e47a9734 diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index 9a96c9a..8d32083 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -1,6 +1,6 @@ # # pppd makefile for Linux -# $Id: Makefile.linux,v 1.24 1998/03/25 01:27:01 paulus Exp $ +# $Id: Makefile.linux,v 1.27 1999/03/02 05:33:45 paulus Exp $ # # Default installation locations @@ -27,7 +27,7 @@ endif # CC = gcc # COPTS = -O2 -pipe -Wall -g -VER = 2.3.4 +VER = 2.3.6 LIBS = ifneq ($(wildcard /usr/lib/libcrypt*),) @@ -38,6 +38,10 @@ endif # MS-CHAP authentication protocol. CHAPMS=y USE_CRYPT=y +ifneq ($(wildcard /usr/lib/libcrypt*),) +HAVE_CRYPT_H=y +endif + HAS_SHADOW=y #USE_PAM=y @@ -54,6 +58,9 @@ ifndef USE_CRYPT LIBS := -ldes $(LIBS) else CFLAGS += -DUSE_CRYPT=1 +ifneq ($(wildcard /usr/include/crypt.h),) +CFLAGS += -DHAVE_CRYPT_H=1 +endif endif PPPDOBJS += md4.o chap_ms.o ifdef MSLANMAN