]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/url.cpp
Centralise compile checks
[xonotic/netradiant.git] / radiant / url.cpp
index e92d1ba1a146375c3e48ea05efb287582ace8213..425948f8ca5bf00d426a1a49e9294090208c4391 100644 (file)
  */
 
 #include "url.h"
+#include "globaldefs.h"
 
 #include "mainframe.h"
 #include "gtkutil/messagebox.h"
 
-#ifdef WIN32
+#if GDEF_OS_WINDOWS
 #include <gtk/gtk.h>
 #include <gdk/gdkwin32.h>
 #include <shellapi.h>
@@ -33,7 +34,7 @@ bool open_url( const char* url ){
 }
 #endif
 
-#if defined( __linux__ ) || defined( __FreeBSD__ )
+#if GDEF_OS_LINUX || GDEF_OS_BSD
 #include <stdlib.h>
 bool open_url( const char* url ){
        char command[2 * PATH_MAX];
@@ -43,7 +44,7 @@ bool open_url( const char* url ){
 }
 #endif
 
-#ifdef __APPLE__
+#if GDEF_OS_MACOS
 #include <stdlib.h>
 bool open_url( const char* url ){
        char command[2 * PATH_MAX];