diff options
author | Peter Åstrand <astrand@cendio.se> | 2008-12-09 10:27:33 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2008-12-09 10:27:33 +0000 |
commit | eaff3bc8fa335b322981173fb3a8bfa158d88227 (patch) | |
tree | 044a77f27839ef61ef9ec92853ddae31f7014c86 /common/rfb | |
parent | 00e0dbfdcbad585795300ee9c7d8cabab5eb487c (diff) | |
download | tigervnc-eaff3bc8fa335b322981173fb3a8bfa158d88227.tar.gz tigervnc-eaff3bc8fa335b322981173fb3a8bfa158d88227.zip |
Basic support for building Windows vncviewer using MinGW. This patch
includes non-intrusive changes, more tweaks will follow. Details:
* Defining WINVER and _WIN32_IE in both common and win modules.
* Need to build CFTMsgWriter and CFTMsgReader.
* Added configure script and Makefiles.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3326 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb')
-rw-r--r-- | common/rfb/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rfb/Makefile.am b/common/rfb/Makefile.am index 29ffc950..25df0007 100644 --- a/common/rfb/Makefile.am +++ b/common/rfb/Makefile.am @@ -26,7 +26,7 @@ HDRS = Blacklist.h CapsContainer.h CapsList.h CConnection.h CFTMsgReader.h \ VNCServer.h VNCServerST.h zrleDecode.h ZRLEDecoder.h zrleEncode.h \ ZRLEEncoder.h -librfb_la_SOURCES = $(HDRS) Blacklist.cxx CConnection.cxx CMsgHandler.cxx \ +librfb_la_SOURCES = $(HDRS) Blacklist.cxx CConnection.cxx CFTMsgReader.cxx CFTMsgWriter.cxx CMsgHandler.cxx \ CMsgReader.cxx CMsgReaderV3.cxx CMsgWriter.cxx CMsgWriterV3.cxx \ CSecurityVncAuth.cxx CapsContainer.cxx CapsList.cxx \ ComparingUpdateTracker.cxx Configuration.cxx ConnParams.cxx \ @@ -46,7 +46,7 @@ librfb_la_SOURCES = $(HDRS) Blacklist.cxx CConnection.cxx CMsgHandler.cxx \ VNCServerST.cxx ZRLEEncoder.cxx ZRLEDecoder.cxx encodings.cxx \ secTypes.cxx util.cxx -librfb_la_CPPFLAGS = -I$(top_srcdir) +librfb_la_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/../win librfb_la_LIBADD = if IRIX_COMPRESS |