X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2FMakefile.linux;h=0ab8c760f87e71aedc4085982a1792b9e05dd254;hb=76bb2b14a56e313b06b727d015fcd6f7ba6f789c;hp=ac7bebb2aea18f3afbedf4fe9b462b7f638e7e1d;hpb=5dad6750f3c93936778a542e309c8208e523d236;p=ppp.git diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index ac7bebb..0ab8c76 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -1,6 +1,6 @@ # # pppd makefile for Linux -# $Id: Makefile.linux,v 1.56 2003/01/13 08:17:04 fcusack Exp $ +# $Id: Makefile.linux,v 1.58 2003/05/12 08:18:54 fcusack Exp $ # # Default installation locations @@ -42,9 +42,6 @@ USE_CRYPT=y # Uncomment the next line to include support for MPPE. CHAPMS (above) must # also be enabled. Also, edit plugins/radius/Makefile.linux. MPPE=y -ifneq ($(wildcard /usr/lib/libcrypt.*),) -HAVE_CRYPT_H=y -endif # Uncomment the next line to include support for PPP packet filtering. # This requires that the libpcap library and headers be installed @@ -119,17 +116,18 @@ CFLAGS += -DHAS_SHADOW #LIBS += -lshadow $(LIBS) endif -ifdef NEEDDES -ifndef USE_CRYPT -LIBS += -ldes $(LIBS) -else -CFLAGS += -DUSE_CRYPT=1 ifneq ($(wildcard /usr/include/crypt.h),) CFLAGS += -DHAVE_CRYPT_H=1 endif ifneq ($(wildcard /usr/lib/libcrypt.*),) LIBS += -lcrypt endif + +ifdef NEEDDES +ifndef USE_CRYPT +LIBS += -ldes $(LIBS) +else +CFLAGS += -DUSE_CRYPT=1 endif PPPDOBJS += pppcrypt.o HEADERS += pppcrypt.h