From 55d5b02f87d55b2506ee9999b318efb728f2f5b6 Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Thu, 10 Jan 2019 17:41:49 -0800 Subject: [PATCH] include glib.h in atom_main_delegate it was complaining about 'undeclared identifier 'TRUE'' --- atom/app/atom_main_delegate.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/atom/app/atom_main_delegate.cc b/atom/app/atom_main_delegate.cc index 787cfb6094..7cbe69e5a5 100644 --- a/atom/app/atom_main_delegate.cc +++ b/atom/app/atom_main_delegate.cc @@ -8,6 +8,10 @@ #include #include +#if defined(OS_LINUX) +#include // for g_setenv() +#endif + #include "atom/app/atom_content_client.h" #include "atom/browser/atom_browser_client.h" #include "atom/browser/relauncher.h"