From 0ef528de9025051a4ab82e73ffd013edf2d6e4c5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Eivind=20N=C3=A6ss?= Date: Mon, 30 May 2022 20:20:24 -0700 Subject: [PATCH] Need to use the /include directory for SunOS MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Eivind Næss --- pppd/Makefile.am | 1 + pppd/sys-solaris.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/pppd/Makefile.am b/pppd/Makefile.am index 405671a..7dc6cdd 100644 --- a/pppd/Makefile.am +++ b/pppd/Makefile.am @@ -79,6 +79,7 @@ endif if SUNOS pppd_SOURCES += sys-solaris.c +pppd_CPPFLAGS += -I${top_srcdir}/include pppd_LIBS += -lsocket -lnsl endif diff --git a/pppd/sys-solaris.c b/pppd/sys-solaris.c index 080a3b6..d903721 100644 --- a/pppd/sys-solaris.c +++ b/pppd/sys-solaris.c @@ -141,6 +141,10 @@ #include "ipcp.h" #include "ccp.h" +#ifdef PPP_WITH_IPV6CP +#include "eui64.h" +#endif + #if !defined(PPP_DRV_NAME) #define PPP_DRV_NAME "ppp" #endif /* !defined(PPP_DRV_NAME) */ -- 2.39.2