diff options
author | DRC <dcommander@users.sourceforge.net> | 2009-04-02 04:49:15 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2009-04-02 04:49:15 +0000 |
commit | a3db48cd084576832a757a9b22230f0fd92c379f (patch) | |
tree | 15dc3fd56f8c86db4c5536ab5390ad16f4a8050a /common | |
parent | 61e808dbc7fe753adb6bbaab2398ff07ef025caf (diff) | |
download | tigervnc-a3db48cd084576832a757a9b22230f0fd92c379f.tar.gz tigervnc-a3db48cd084576832a757a9b22230f0fd92c379f.zip |
Build libjpeg/SIMD by default and replace --with-included-jpeg switch with --with-system-jpeg switch
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3735 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common')
-rw-r--r-- | common/configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/common/configure.ac b/common/configure.ac index 84d7cc21..2bd44fe3 100644 --- a/common/configure.ac +++ b/common/configure.ac @@ -61,13 +61,13 @@ AM_CONDITIONAL([INCLUDED_ZLIB], [ test "x$INCLUDED_ZLIB" = xyes ]) AC_CONFIG_SUBDIRS([zlib]) dnl Check for libjpeg library -INCLUDED_JPEG=no -AC_ARG_WITH([included-jpeg], - AS_HELP_STRING([--with-included-jpeg], - [use libjpeg which is distributed with VNC]), - [INCLUDED_JPEG=yes], - [AC_SEARCH_LIBS([jpeg_destroy_compress], [jpeg], [], - [INCLUDED_JPEG=yes])]) +INCLUDED_JPEG=yes +AC_ARG_WITH([system-jpeg], + AS_HELP_STRING([--with-system-jpeg], + [use libjpeg which is distributed with the O/S]), + [AC_SEARCH_LIBS([jpeg_destroy_compress], [jpeg], + [INCLUDED_JPEG=no], [])], + []) AM_CONDITIONAL([INCLUDED_JPEG], [ test "x$INCLUDED_JPEG" = xyes ]) AC_CONFIG_SUBDIRS([jpeg]) |