diff options
author | Bert van Hall <bert.vanhall@gmx.de> | 2017-02-08 17:53:58 +0100 |
---|---|---|
committer | Bert van Hall <bert.vanhall@gmx.de> | 2017-02-13 12:18:07 +0100 |
commit | fe943395873c6cbfdfa0eadb8a5d13f2c95e8614 (patch) | |
tree | 7a8620e805fe7c1c5ce289cb82d84a3f16459719 /libvncclient | |
parent | 2041bfd5cd6c6a8bcec260a3fa86d340050892c8 (diff) | |
download | libtdevnc-fe943395873c6cbfdfa0eadb8a5d13f2c95e8614.tar.gz libtdevnc-fe943395873c6cbfdfa0eadb8a5d13f2c95e8614.zip |
drop autotools
Since autotools officially is no longer supported (see various github
issues), drop the related infrastructure to stop tempting people to use
it for building.
Signed-off-by: Bert van Hall <bert.vanhall@gmx.de>
Diffstat (limited to 'libvncclient')
-rw-r--r-- | libvncclient/Makefile.am | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/libvncclient/Makefile.am b/libvncclient/Makefile.am deleted file mode 100644 index bc2420b..0000000 --- a/libvncclient/Makefile.am +++ /dev/null @@ -1,29 +0,0 @@ -AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/common - -if HAVE_GNUTLS -TLSSRCS = tls_gnutls.c -TLSLIBS = @GNUTLS_LIBS@ -else -if HAVE_LIBSSL -TLSSRCS = tls_openssl.c -TLSLIBS = @SSL_LIBS@ @CRYPT_LIBS@ -else -TLSSRCS = tls_none.c -endif -endif - - -libvncclient_la_SOURCES=cursor.c listen.c rfbproto.c sockets.c vncviewer.c ../common/minilzo.c $(TLSSRCS) -libvncclient_la_LIBADD=$(TLSLIBS) - -noinst_HEADERS=../common/lzodefs.h ../common/lzoconf.h ../common/minilzo.h tls.h - -rfbproto.o: rfbproto.c corre.c hextile.c rre.c tight.c zlib.c zrle.c ultra.c - -EXTRA_DIST=corre.c hextile.c rre.c tight.c zlib.c zrle.c ultra.c tls_gnutls.c tls_openssl.c tls_none.c - -$(libvncclient_la_OBJECTS): ../rfb/rfbclient.h - -lib_LTLIBRARIES=libvncclient.la -libvncclient_la_LDFLAGS = -version-info 1:0:0 - |