From 875d9f4d8feaea26e1266279f2181f587e511c13 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Wed, 5 Jun 2013 09:15:39 +0200 Subject: [PATCH] * Fixed building without breakpad. Thanks to Dinar Valeev. --- src/tomahawk/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tomahawk/main.cpp b/src/tomahawk/main.cpp index 1bb345270..bde66a121 100644 --- a/src/tomahawk/main.cpp +++ b/src/tomahawk/main.cpp @@ -34,7 +34,9 @@ #ifndef ENABLE_HEADLESS #include "TomahawkSettingsGui.h" - #include "breakpad/BreakPad.h" + #ifdef WITH_BREAKPAD + #include "breakpad/BreakPad.h" + #endif #endif