From a8ceb971a489e3fafa2d4553701a26f2a6106e28 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 21 May 2019 14:12:37 -0500 Subject: [PATCH] Use the correct expat location expat.h is (in most Linux distributions, at least) located directly in /usr/include. Because the compiler is called with the src directory in the include path, the include of happens to work but results in the bundled version of the header being used instead of the system version. --- src/libslic3r/Format/AMF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Format/AMF.cpp b/src/libslic3r/Format/AMF.cpp index ff1da37cc1d..a3f92e4d14b 100644 --- a/src/libslic3r/Format/AMF.cpp +++ b/src/libslic3r/Format/AMF.cpp @@ -2,7 +2,7 @@ #include #include #include -#include +#include #include