summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordscho <dscho>2004-04-12 18:31:04 +0000
committerdscho <dscho>2004-04-12 18:31:04 +0000
commit47eece6affcbfffdd09bbb9c5d453e6585c36ff1 (patch)
treef0787346fa9c79a13b942c9e25f1786ca88cc9ed
parent782c6e7a15ce1870f1e3d6d450a119f444b6b1e8 (diff)
downloadlibtdevnc-47eece6a.tar.gz
libtdevnc-47eece6a.zip
fix compilation without jpeg and a certain autoconf version
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 4121dd6..0761996 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
# Process this file with autoconf to produce a configure script.
AC_INIT(LibVNCServer, 0.7pre, http://sourceforge.net/projects/libvncserver)
AM_INIT_AUTOMAKE(LibVNCServer, 0.7pre)
-AM_CONFIG_HEADER(config.h)
+AM_CONFIG_HEADER(rfbconfig.h)
AX_PREFIX_CONFIG_H([rfb/rfbconfig.h])
# Checks for programs.
@@ -83,7 +83,7 @@ if test ! -z "$HAVE_PTHREAD_H"; then
fi
AM_CONDITIONAL(HAVE_LIBPTHREAD, test ! -z "$HAVE_LIBPTHREAD")
AM_CONDITIONAL(HAVE_LIBZ, test ! -z "$HAVE_ZLIB_H")
-AM_CONDITIONAL(HAVE_LIBJPEG, test ! -u "$HAVE_JPEGLIB_H")
+AM_CONDITIONAL(HAVE_LIBJPEG, test ! -z "$HAVE_JPEGLIB_H")
# Checks for header files.
AC_HEADER_STDC