From 098f94695a44f22f1d8993a2ff87c036a4e10600 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 13 Oct 2014 13:05:17 +0200 Subject: [PATCH] Fix compilation on other Unix besides Linux The linux.c file is really for just generic Unix systems, so adapt the .pro file logic to match. Signed-off-by: Thiago Macieira Signed-off-by: Dirk Hohndel --- subsurface.pro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subsurface.pro b/subsurface.pro index 1e85b1165..176e23ffe 100644 --- a/subsurface.pro +++ b/subsurface.pro @@ -191,9 +191,9 @@ SOURCES = \ qt-ui/statistics/monthstatistics.cpp android: SOURCES += android.cpp -else: linux*: SOURCES += linux.c -mac: SOURCES += macos.c -win32: SOURCES += windows.c +else: win32: SOURCES += windows.c +else: mac: SOURCES += macos.c +else: SOURCES += linux.c # All other Unix, really android: SOURCES -= \ qt-ui/usermanual.cpp \