From f2f9554f775fa3f8b305c536d90e5393fd40d154 Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Sat, 21 Mar 2020 15:16:30 +1100 Subject: [PATCH] pppd: Add mppe.h to the list of headers to install if MPPE is defined This means that mppe.h will be installed by make install-devel, as it is needed for compiling chap_ms.c when MPPE=1. Signed-off-by: Paul Mackerras --- pppd/Makefile.linux | 1 + 1 file changed, 1 insertion(+) diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index 9664f70..853b15c 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -99,6 +99,7 @@ CFLAGS += -DMSLANMAN=1 endif ifdef MPPE CFLAGS += -DMPPE=1 +HEADERS += mppe.h endif endif -- 2.39.2