From 1d74860877ae59e3d19fb15660e8853d8056779b Mon Sep 17 00:00:00 2001 From: Andrzej Kapolka Date: Tue, 20 Aug 2013 10:51:55 -0700 Subject: [PATCH] Need to #ifdef this out to avoid linking against nonexistent quazip on Linux. --- interface/src/Menu.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/src/Menu.cpp b/interface/src/Menu.cpp index 1e55c8f911..b435604d3f 100644 --- a/interface/src/Menu.cpp +++ b/interface/src/Menu.cpp @@ -467,10 +467,12 @@ void Menu::exportSettings() { } void Menu::checkForUpdates() { +#if defined(Q_OS_MAC) && defined(QT_NO_DEBUG) qDebug() << "Checking if there are available updates.\n"; // if this is a release OS X build use fervor to check for an update FvUpdater::sharedUpdater()->SetFeedURL("http://s3.highfidelity.io/appcast.xml"); FvUpdater::sharedUpdater()->CheckForUpdatesSilent(); +#endif } void Menu::loadAction(QSettings* set, QAction* action) {