From f655d09fd5b49652f11ab91a31b920dbc36eb10f Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 10 Oct 2015 13:45:15 +0300 Subject: [PATCH] Avoid link-time errors due to inline functions * src/emacs.c: Include puresize.h, to avoid link-time errors in unoptimized builds due to PURE_P and CHECK_IMPURE, which are now inline functions. --- src/emacs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emacs.c b/src/emacs.c index 5a6999d9b1d..3eff5a720ea 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -82,6 +82,7 @@ along with GNU Emacs. If not, see . */ #include "syntax.h" #include "sysselect.h" #include "systime.h" +#include "puresize.h" #include "gnutls.h" -- 2.39.2