]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/Makefile.linux
bug fix from Johan Widen
[ppp.git] / pppd / Makefile.linux
index 9a96c9a1c13e2e138fbf6c4e3ab48cfbe50c46f3..8d320837efa4e9dcbe4c29f11f2a8623b0d5fec4 100644 (file)
@@ -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