aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-30 07:52:52 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-30 07:52:52 +0000
commit12c499603ed0c1fc940e2ee77534c42a8ff1d0f1 (patch)
tree13c1b87d737d2d7ff800b762b02a07d4debd1ac9
parent147b9e8d5299ccc6c51cdf48ed7495267ad845db (diff)
XFree86 installed with its own zlib isn't the only reason why an old
zlib might be found when linking with the GTK+ link flags, so don't imply that it is in error messages. svn path=/trunk/; revision=4625
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index ddb168c512..e5d242a5e2 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2,7 +2,7 @@ dnl Macros that test for specific features.
dnl This file is part of the Autoconf packaging for Ethereal.
dnl Copyright (C) 1998-2000 by Gerald Combs.
dnl
-dnl $Id: acinclude.m4,v 1.38 2002/01/20 23:05:22 gerald Exp $
+dnl $Id: acinclude.m4,v 1.39 2002/01/30 07:52:52 guy Exp $
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -399,7 +399,7 @@ AC_DEFUN(AC_ETHEREAL_ZLIB_CHECK,
AC_TRY_LINK_FUNC(gzseek, AC_MSG_RESULT(no),
[
AC_MSG_RESULT(yes)
- AC_MSG_ERROR(old XFree86 zlib found - rebuild XFree86 using system zlib or configure Ethereal without compressed file support.)
+ AC_MSG_ERROR(old zlib found when linking with X11 - get rid of old zlib.)
])
CFLAGS="$ac_save_CFLAGS"
LIBS="$ac_save_LIBS"