diff options
author | Adam Tkac <atkac@redhat.com> | 2010-04-23 14:14:11 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2010-04-23 14:14:11 +0000 |
commit | dfe19cfff8deed3adbf0b4190763bbd243e56d07 (patch) | |
tree | 5003cda4be862ab009368b994f4d27462abc3dcd /common/rfb/Makefile.am | |
parent | 35e6d4c554e6f9fd9c1446db647fbaf3dbc6c087 (diff) | |
download | tigervnc-dfe19cfff8deed3adbf0b4190763bbd243e56d07.tar.gz tigervnc-dfe19cfff8deed3adbf0b4190763bbd243e56d07.zip |
[Development] Implement VeNCrypt security type on server side. Currently only
TLSNone and TLSVnc VeNCrypt subtypes are implemented.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4045 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb/Makefile.am')
-rw-r--r-- | common/rfb/Makefile.am | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/common/rfb/Makefile.am b/common/rfb/Makefile.am index 138fec80..ee797a83 100644 --- a/common/rfb/Makefile.am +++ b/common/rfb/Makefile.am @@ -15,9 +15,10 @@ HDRS = Blacklist.h CapsContainer.h CapsList.h CConnection.h \ ScaledPixelBuffer.h ScaleFilters.h SConnection.h ScreenSet.h \ screenTypes.h SDesktop.h ServerCore.h SMsgHandler.h \ SMsgReader.h SMsgReaderV3.h SMsgWriter.h SMsgWriterV3.h \ - Security.h SSecurity.h SSecurityNone.h \ - SSecurityVncAuth.h Threading.h tightDecode.h TightDecoder.h \ - tightEncode.h TightEncoder.h TightPalette.h Timer.h \ + Security.h SSecurity.h SSecurityNone.h SSecurityPlain.h \ + SSecurityStack.h SSecurityTLS.h SSecurityTLSBase.h SSecurityVeNCrypt.h \ + SSecurityVncAuth.h Threading.h tightDecode.h \ + TightDecoder.h tightEncode.h TightEncoder.h TightPalette.h Timer.h \ TransImageGetter.h transInitTempl.h transTempl.h TrueColourMap.h \ UpdateTracker.h UserPasswdGetter.h util.h VNCSConnectionST.h \ VNCServer.h VNCServerST.h zrleDecode.h ZRLEDecoder.h zrleEncode.h \ @@ -34,15 +35,17 @@ librfb_la_SOURCES = $(HDRS) Blacklist.cxx CConnection.cxx CMsgHandler.cxx \ RREEncoder.cxx RREDecoder.cxx RawDecoder.cxx RawEncoder.cxx \ Region.cxx SConnection.cxx SMsgHandler.cxx \ SMsgReader.cxx SMsgReaderV3.cxx SMsgWriter.cxx SMsgWriterV3.cxx \ - ServerCore.cxx Security.cxx SSecurityVncAuth.cxx \ + ServerCore.cxx Security.cxx SSecurityPlain.cxx SSecurityStack.cxx \ + SSecurityTLS.cxx SSecurityTLSBase.cxx SSecurityVeNCrypt.cxx \ + SSecurityVncAuth.cxx \ ScaledPixelBuffer.cxx ScaleFilters.cxx Timer.cxx TightDecoder.cxx \ TightEncoder.cxx TightPalette.cxx TransImageGetter.cxx \ UpdateTracker.cxx VNCSConnectionST.cxx \ VNCServerST.cxx ZRLEEncoder.cxx ZRLEDecoder.cxx encodings.cxx \ util.cxx -librfb_la_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/win -librfb_la_LIBADD = +librfb_la_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/win @GNUTLS_CFLAGS@ +librfb_la_LIBADD = @GNUTLS_LIBS@ if INCLUDED_JPEG librfb_la_CPPFLAGS += -I$(top_srcdir)/common/jpeg -I$(top_builddir)/common/jpeg |