summaryrefslogtreecommitdiffstats
path: root/client/x11
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-19 22:37:53 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-05-02 11:24:44 +0200
commit04780d699685c227be9edd4a06f0c738f8d8022b (patch)
tree31aae025dc1a532ebdb6a9f8cf02a0657969f881 /client/x11
parent9605351863d395e9aa1aa7d3080124dcfdd9d3e2 (diff)
downloadspice-04780d699685c227be9edd4a06f0c738f8d8022b.tar.gz
spice-04780d699685c227be9edd4a06f0c738f8d8022b.tar.xz
spice-04780d699685c227be9edd4a06f0c738f8d8022b.zip
client: remove c++ wrappers
client/ contains several .cpp file which only #include a .c file of the same name. This is unusual and seems to only be done to get C++ name mangling on the symbols defined in the C file. Now that all headers files in common/ use extern "C", these wrappers are no longer useful.
Diffstat (limited to 'client/x11')
-rw-r--r--client/x11/Makefile.am24
1 files changed, 12 insertions, 12 deletions
diff --git a/client/x11/Makefile.am b/client/x11/Makefile.am
index 7504833c..54d05ce9 100644
--- a/client/x11/Makefile.am
+++ b/client/x11/Makefile.am
@@ -41,14 +41,14 @@ RED_COMMON_SRCS = \
$(CLIENT_DIR)/demarshallers.h \
$(CLIENT_DIR)/generated_demarshallers.cpp \
$(CLIENT_DIR)/generated_demarshallers1.cpp \
- $(CLIENT_DIR)/marshaller.cpp \
+ $(COMMON_DIR)/marshaller.c \
$(CLIENT_DIR)/marshallers.h \
$(CLIENT_DIR)/generated_marshallers.cpp \
$(CLIENT_DIR)/generated_marshallers1.cpp \
- $(CLIENT_DIR)/sw_canvas.cpp \
+ $(COMMON_DIR)/sw_canvas.c \
$(CLIENT_DIR)/canvas.cpp \
$(CLIENT_DIR)/canvas.h \
- $(CLIENT_DIR)/canvas_utils.cpp \
+ $(COMMON_DIR)/canvas_utils.c \
$(CLIENT_DIR)/red_sw_canvas.cpp \
$(CLIENT_DIR)/red_sw_canvas.h \
$(CLIENT_DIR)/cmd_line_parser.cpp \
@@ -78,21 +78,21 @@ RED_COMMON_SRCS = \
$(CLIENT_DIR)/inputs_handler.h \
$(CLIENT_DIR)/jpeg_decoder.cpp \
$(CLIENT_DIR)/jpeg_decoder.h \
- $(CLIENT_DIR)/lz.cpp \
- $(CLIENT_DIR)/lines.cpp \
+ $(COMMON_DIR)/lz.c \
+ $(COMMON_DIR)/lines.c \
$(CLIENT_DIR)/monitor.cpp \
$(CLIENT_DIR)/monitor.h \
- $(CLIENT_DIR)/mem.cpp \
+ $(COMMON_DIR)/mem.c \
$(CLIENT_DIR)/menu.cpp \
$(CLIENT_DIR)/menu.h \
$(CLIENT_DIR)/mjpeg_decoder.h \
$(CLIENT_DIR)/mjpeg_decoder.cpp \
$(CLIENT_DIR)/pixels_source.h \
- $(CLIENT_DIR)/pixman_utils.cpp \
+ $(COMMON_DIR)/pixman_utils.c \
$(CLIENT_DIR)/platform.h \
$(CLIENT_DIR)/playback_channel.cpp \
$(CLIENT_DIR)/process_loop.cpp \
- $(CLIENT_DIR)/quic.cpp \
+ $(COMMON_DIR)/quic.c \
$(CLIENT_DIR)/record_channel.cpp \
$(CLIENT_DIR)/red_channel.cpp \
$(CLIENT_DIR)/red_channel.h \
@@ -106,8 +106,8 @@ RED_COMMON_SRCS = \
$(CLIENT_DIR)/red_pixmap.h \
$(CLIENT_DIR)/red_types.h \
$(CLIENT_DIR)/red_window.h \
- $(CLIENT_DIR)/region.cpp \
- $(CLIENT_DIR)/rop3.cpp \
+ $(COMMON_DIR)/region.c \
+ $(COMMON_DIR)/rop3.c \
$(CLIENT_DIR)/screen.cpp \
$(CLIENT_DIR)/screen.h \
$(CLIENT_DIR)/screen_layer.cpp \
@@ -150,8 +150,8 @@ endif
if SUPPORT_GL
RED_OGL_SRCS = \
- $(CLIENT_DIR)/gl_canvas.cpp \
- $(CLIENT_DIR)/glc.cpp \
+ $(COMMON_DIR)/gl_canvas.c \
+ $(COMMON_DIR)/glc.c \
$(CLIENT_DIR)/red_gl_canvas.cpp \
$(CLIENT_DIR)/red_gl_canvas.h \
$(CLIENT_DIR)/red_pixmap_gl.h \