diff options
author | Adam Tkac <atkac@redhat.com> | 2010-05-03 09:01:58 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2010-05-03 09:01:58 +0000 |
commit | 0835671682bdb7bfb49e30e0b88112d229a5e7e6 (patch) | |
tree | bd906bf5ecad2fbbfde9670507e102efec8cd7e9 | |
parent | 53e444542c09df13110cdaa0ce664b46a31f731a (diff) | |
download | tigervnc-0835671682bdb7bfb49e30e0b88112d229a5e7e6.tar.gz tigervnc-0835671682bdb7bfb49e30e0b88112d229a5e7e6.zip |
[Bugfix] Add GNUTLS_{CFLAGS,LIBS} to librdr_la_{CPPFLAGS,LIBADD} to fix
compilation of Windows sources.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4051 3789f03b-4d11-0410-bbf8-ca57d06f2519
-rw-r--r-- | common/rdr/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rdr/Makefile.am b/common/rdr/Makefile.am index bd23cbfe..593b6196 100644 --- a/common/rdr/Makefile.am +++ b/common/rdr/Makefile.am @@ -11,8 +11,8 @@ librdr_la_SOURCES = $(HDRS) Exception.cxx FdInStream.cxx FdOutStream.cxx \ TLSException.cxx TLSInStream.cxx TLSOutStream.cxx ZlibInStream.cxx \ ZlibOutStream.cxx -librdr_la_CPPFLAGS = -I$(top_srcdir)/common -librdr_la_LIBADD = +librdr_la_CPPFLAGS = -I$(top_srcdir)/common @GNUTLS_CFLAGS@ +librdr_la_LIBADD = @GNUTLS_LIBS@ if INCLUDED_ZLIB librdr_la_CPPFLAGS += -I$(top_srcdir)/common/zlib |