From 3baffbdcc5718815d4e2958531dcb1d906ae0061 Mon Sep 17 00:00:00 2001 From: Delan Azabani Date: Mon, 24 Jun 2024 12:44:35 +0800 Subject: [PATCH] Fix compile error under gcc with -Denable-pch-std=false Following the latest hacking.md currently fails because of a missing include in upstream editline. This patch fixes the build by adding that missing include. Fixes #410. Change-Id: Iefd4cb687ed3da71ccda9fe9624f38e6ef4623e5 --- src/libcmd/repl.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcmd/repl.cc b/src/libcmd/repl.cc index 99abbe44b..3db2401e4 100644 --- a/src/libcmd/repl.cc +++ b/src/libcmd/repl.cc @@ -1,3 +1,4 @@ +#include #include #include #include