diff options
author | dscho <dscho> | 2004-06-07 08:31:57 +0000 |
---|---|---|
committer | dscho <dscho> | 2004-06-07 08:31:57 +0000 |
commit | 2b8c2a5c3a71364e402b4df334a6f5aff5ed77a9 (patch) | |
tree | 66e59b58f919f5848780d5c7d6c954160e289cff /configure.ac | |
parent | 98e4f89569587c143a56e4dcf8162a035efc361e (diff) | |
download | libvncserver-2b8c2a5c3a71364e402b4df334a6f5aff5ed77a9.zip libvncserver-2b8c2a5c3a71364e402b4df334a6f5aff5ed77a9.tar.gz |
add client_examples/, add SDLvncviewer, libvncclient API changes, suppress automake CFLAGS nagging
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index dec4e20..0ea9ebb 100644 --- a/configure.ac +++ b/configure.ac @@ -29,6 +29,10 @@ AC_ARG_WITH(24bpp, if test "x$with_24bpp" = "xyes"; then AC_DEFINE(ALLOW24BPP) fi +AH_TEMPLATE(SDL_CONFIG, [Use sdl-config (for SDLvncviewer)]) +AC_ARG_WITH(sdl, + [ --with-sdl use sdl-config], + , [ with_sdl=yes ]) # Checks for X libraries HAVE_X="false" @@ -84,6 +88,14 @@ fi AM_CONDITIONAL(HAVE_LIBPTHREAD, test ! -z "$HAVE_LIBPTHREAD") AM_CONDITIONAL(HAVE_LIBZ, test ! -z "$HAVE_ZLIB_H") AM_CONDITIONAL(HAVE_LIBJPEG, test ! -z "$HAVE_JPEGLIB_H") +if test -z "$with_sdl"; then + if sdl-config >/dev/null 2>&1; then + with_sdl=yes + else + with_sdl=no + fi +fi +AM_CONDITIONAL(HAVE_LIBSDL, test "x$with_sdl" = "xyes") # Checks for header files. AC_HEADER_STDC @@ -141,6 +153,7 @@ AC_CONFIG_FILES([Makefile vncterm/Makefile classes/Makefile libvncclient/Makefile + client_examples/Makefile test/Makefile libvncserver.spec libvncserver-config]) |