Browse Source

Make sure configure aborts if libjpeg isn't found.


git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4311 3789f03b-4d11-0410-bbf8-ca57d06f2519
tags/v1.1.90
Pierre Ossman 13 years ago
parent
commit
0c9dddcf4b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      configure.ac

+ 1
- 1
configure.ac View File

@@ -195,7 +195,7 @@ AM_CONDITIONAL([INCLUDED_ZLIB], [ test "x$INCLUDED_ZLIB" = xyes ])
AC_CONFIG_SUBDIRS([zlib])

dnl Check for libjpeg library
AC_SEARCH_LIBS([jpeg_destroy_compress], [jpeg])
AC_SEARCH_LIBS([jpeg_destroy_compress], [jpeg], [], [AC_MSG_ERROR(["libjpeg is required to build TigerVNC"])])

AC_CHECK_FUNCS([vsnprintf snprintf strcasecmp strncasecmp])


Loading…
Cancel
Save