]> git.ozlabs.org Git - ppp.git/commitdiff
define HAVE_CRYPT_H if we have a /usr/include/crypt.h
authorPaul Mackerras <paulus@samba.org>
Wed, 1 Apr 1998 02:06:41 +0000 (02:06 +0000)
committerPaul Mackerras <paulus@samba.org>
Wed, 1 Apr 1998 02:06:41 +0000 (02:06 +0000)
pppd/Makefile.linux

index 9a96c9a1c13e2e138fbf6c4e3ab48cfbe50c46f3..04ef7e2f17397970cd3d4e31cd1d847772a9f069 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.25 1998/04/01 02:06:41 paulus Exp $
 #
 
 # Default installation locations
@@ -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