]> source.dussan.org Git - tigervnc.git/commitdiff
Move definition of XORG macro to separate header.
authorAdam Tkac <atkac@redhat.com>
Fri, 28 Aug 2009 12:02:20 +0000 (12:02 +0000)
committerAdam Tkac <atkac@redhat.com>
Fri, 28 Aug 2009 12:02:20 +0000 (12:02 +0000)
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3884 3789f03b-4d11-0410-bbf8-ca57d06f2519

unix/xserver/hw/vnc/Makefile.am
unix/xserver/hw/vnc/XserverDesktop.cc
unix/xserver/hw/vnc/XserverDesktop.h
unix/xserver/hw/vnc/vncHooks.cc
unix/xserver/hw/vnc/xorg-version.h [new file with mode: 0644]
unix/xserver/hw/vnc/xvnc.cc

index 957612ac795d2659642c30e5429403d767dd8bdd..a39a10d2235b70c074dc28571556de6a411fceb8 100644 (file)
@@ -9,7 +9,7 @@ COMMON_LIBS=$(NETWORK_LIB) $(RFB_LIB) $(RDR_LIB) $(XREGION_LIB)
 
 noinst_LTLIBRARIES = libvnccommon.la
 
-HDRS = RegionHelper.h vncExtInit.h vncHooks.h XserverDesktop.h
+HDRS = RegionHelper.h vncExtInit.h vncHooks.h XserverDesktop.h xorg-version.h
 
 libvnccommon_la_SOURCES = $(HDRS) vncExtInit.cc vncHooks.cc XserverDesktop.cc
 
index a36e7696821e7a80fed8d31299e5d4072d162daa..d6fe9938d5f2960554f17e3a678dfc07c85832c7 100644 (file)
@@ -41,6 +41,7 @@
 #include <rfb/Configuration.h>
 #include "XserverDesktop.h"
 #include "vncExtInit.h"
+#include "xorg-version.h"
 
 extern "C" {
 #define public c_public
index b394d16ffed9404b0080ec170fd0bea7a14144d1..7729d3f2354535e3fde90920d840d43627079b2c 100644 (file)
 #include <dix-config.h>
 #endif
 
-#if XORG_VERSION_CURRENT < \
-       ((1 * 10000000) + (5 * 100000) + (99 * 1000))
-/* Xorg 1.5 branch */
-#define XORG 15
-#else
-/* Xorg 1.6 branch */
-#define XORG 16
-#endif
-
 #include <rfb/SDesktop.h>
 #include <rfb/HTTPServer.h>
 #include <rfb/PixelBuffer.h>
index 700efbbfc07e135c9e283049ba2a7ca739e7faab..23dc4ea61ff867c795e317f06bc9d08c5a6c1643 100644 (file)
@@ -25,6 +25,7 @@
 #include "XserverDesktop.h"
 #include "vncHooks.h"
 #include "vncExtInit.h"
+#include "xorg-version.h"
 
 extern "C" {
 #define class c_class
diff --git a/unix/xserver/hw/vnc/xorg-version.h b/unix/xserver/hw/vnc/xorg-version.h
new file mode 100644 (file)
index 0000000..e7eeca0
--- /dev/null
@@ -0,0 +1,33 @@
+/* Copyright (C) 2009 TightVNC Team
+ * Copyright (C) 2009 Red Hat, Inc.
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+ * USA.
+ */
+
+#ifndef XORG_VERSION_H
+#define XORG_VERSION_H
+
+#ifdef HAVE_DIX_CONFIG_H
+#include <dix-config.h>
+#endif
+
+#if XORG_VERSION_CURRENT < ((1 * 10000000) + (5 * 100000) + (99 * 1000))
+#define XORG 15
+#else
+#define XORG 16
+#endif
+
+#endif
index 45820ee3369d8e3d1df91a619eff1b144adabcfd..05066fce49d4236be2cb54ab7a7bd9013a607b28 100644 (file)
@@ -37,6 +37,7 @@ from the X Consortium.
 #include <rfb/LogWriter.h>
 #include <network/TcpSocket.h>
 #include "vncExtInit.h"
+#include "xorg-version.h"
 
 extern "C" {
 #define class c_class