diff options
author | dscho <dscho> | 2004-06-08 20:17:04 +0000 |
---|---|---|
committer | dscho <dscho> | 2004-06-08 20:17:04 +0000 |
commit | 992be8f5f7fe1dafb93e3cf06610a20724e1696f (patch) | |
tree | fae986e6aeb01f35aa92d97e370d7a5819f08ae4 /client_examples/Makefile.am | |
parent | 1afc2a04e4f662f691fafccba49943fe0ee4ecec (diff) | |
download | libtdevnc-992be8f5f7fe1dafb93e3cf06610a20724e1696f.tar.gz libtdevnc-992be8f5f7fe1dafb93e3cf06610a20724e1696f.zip |
fix compilation on IRIX
Diffstat (limited to 'client_examples/Makefile.am')
-rw-r--r-- | client_examples/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/client_examples/Makefile.am b/client_examples/Makefile.am index 83750ab..0e814af 100644 --- a/client_examples/Makefile.am +++ b/client_examples/Makefile.am @@ -13,9 +13,10 @@ endif if HAVE_LIBSDL SDLVIEWER=SDLvncviewer -SDLvncviewer_CFLAGS=`sdl-config --cflags` +SDLvncviewer_CFLAGS=$(SDL_CFLAGS) -SDLvncviewer_LDFLAGS=`sdl-config --libs` +# thanks to autoconf, this looks ugly +SDLvncviewer_LDADD=$(LDADD) $(SDL_LIBS) endif noinst_PROGRAMS=ppmtest $(SDLVIEWER) $(FFMPEG_CLIENT) |