1From aba3273273e826c6dc90f197ca9a3e800e826891 Mon Sep 17 00:00:00 2001 2From: Bruce Ashfield <bruce.ashfield@gmail.com> 3Date: Fri, 5 Nov 2021 12:41:35 -0400 4Subject: [PATCH] ppp: fix build against 5.15 headers 5 6The 5.15 kernel has removed ipx support, along with the userspace 7visible header. 8 9This support wasn't used previously (as it hasn't been very well 10maintained in the kernel for several years), so we can simply 11disable it in our build and wait for upstream to do a release that 12drops the support. 13 14Upstream-Status: Inappropriate [OE-specific configuration/headers] 15 16Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> 17--- 18 pppd/Makefile.linux | 2 +- 19 1 file changed, 1 insertion(+), 1 deletion(-) 20 21diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux 22index 22837c5..23b9b22 100644 23--- a/pppd/Makefile.linux 24+++ b/pppd/Makefile.linux 25@@ -91,7 +91,7 @@ MAXOCTETS=y 26 27 INCLUDE_DIRS= -I../include 28 29-COMPILE_FLAGS= -DHAVE_PATHS_H -DIPX_CHANGE -DHAVE_MMAP -pipe 30+COMPILE_FLAGS= -DHAVE_PATHS_H -DHAVE_MMAP -pipe 31 32 CFLAGS= $(COPTS) $(COMPILE_FLAGS) $(INCLUDE_DIRS) '-DDESTDIR="@DESTDIR@"' 33 34-- 352.25.1 36 37