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 /client_examples | |
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 'client_examples')
-rw-r--r-- | client_examples/Makefile.am | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/client_examples/Makefile.am b/client_examples/Makefile.am deleted file mode 100644 index 9cb2c32..0000000 --- a/client_examples/Makefile.am +++ /dev/null @@ -1,38 +0,0 @@ -AM_CPPFLAGS = -I$(top_srcdir) -LDADD = ../libvncclient/libvncclient.la @WSOCKLIB@ - -if WITH_FFMPEG -FFMPEG_HOME=@with_ffmpeg@ - -if HAVE_MP3LAME -MP3LAME_LIB=-lmp3lame -endif - -vnc2mpg_CFLAGS=-I$(FFMPEG_HOME)/libavformat -I$(FFMPEG_HOME)/libavcodec -I$(FFMPEG_HOME)/libavutil -vnc2mpg_LDADD=$(LDADD) $(FFMPEG_HOME)/libavformat/libavformat.a $(FFMPEG_HOME)/libavcodec/libavcodec.a $(MP3LAME_LIB) -lm - -FFMPEG_CLIENT=vnc2mpg -endif - -if HAVE_LIBSDL -SDLVIEWER=SDLvncviewer - -SDLvncviewer_CFLAGS=$(SDL_CFLAGS) -SDLvncviewer_SOURCES=SDLvncviewer.c scrap.c scrap.h - -# thanks to autoconf, this looks ugly -SDLvncviewer_LDADD=$(LDADD) $(SDL_LIBS) -endif - -if HAVE_LIBGTK -GTKVIEWER=gtkvncviewer -gtkvncviewer_SOURCES=gtkvncviewer.c -gtkvncviewer_CFLAGS=$(GTK_CFLAGS) -gtkvncviewer_LDADD=$(LDADD) $(GTK_LIBS) -endif - - -noinst_PROGRAMS=ppmtest $(SDLVIEWER) $(GTKVIEWER) $(FFMPEG_CLIENT) backchannel - - - |