From 4d60e0338779459d8b9746b8b21894b43afba142 Mon Sep 17 00:00:00 2001 From: Adam Tkac Date: Wed, 11 Jun 2008 15:24:16 +0000 Subject: Replaced --with-tight-{jpeg,zlib} configure parameters by --with-included-{jpeg,zlib} git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/branches/1.5-xserver@2582 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- common/configure.ac | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/common/configure.ac b/common/configure.ac index 096fe7df..c72164a3 100644 --- a/common/configure.ac +++ b/common/configure.ac @@ -56,12 +56,12 @@ AC_CHECK_LIB(dmedia, dmICCreate, LIBS="$LIBS -ldmedia"]) AM_CONDITIONAL([IRIX_MEDIA], [ test "x$IRIX_MEDIA" = xyes ]) -AC_ARG_WITH([tight-zlib], - AS_HELP_STRING([--with-tight-zlib], +AC_ARG_WITH([included-zlib], + AS_HELP_STRING([--with-included-zlib], [use libz which is distributed with VNC]), - [], [with_tight_zlib='no']) + [], [with_included_zlib='no']) -if test "x$with_tight_zlib" = xno; then +if test "x$with_included_zlib" = xno; then AC_SEARCH_LIBS([inflateEnd], [z], [ZLIB_LIB='-lz'], [ZLIB_DIR=zlib @@ -79,12 +79,12 @@ AC_SUBST(ZLIB_LIB) AC_CONFIG_SUBDIRS([zlib]) -AC_ARG_WITH([tight-jpeg], - AS_HELP_STRING([--with-tight-jpeg], +AC_ARG_WITH([included-jpeg], + AS_HELP_STRING([--with-included-jpeg], [use libjpeg which is distributed with VNC]), - [], [with_tight_jpeg='no']) + [], [with_included_jpeg='no']) -if test "x$with_tight_jpeg" = xno; then +if test "x$with_included_jpeg" = xno; then AC_SEARCH_LIBS([jpeg_destroy_compress], [jpeg], [JPEG_LIB='-ljpeg'], [JPEG_DIR=jpeg -- cgit v1.2.3