autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: cvs autoconf generates broken configure script


From: Alexandre Duret-Lutz
Subject: Re: cvs autoconf generates broken configure script
Date: 19 Dec 2001 10:13:52 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1

>>> "juhp" == Jens Petersen <address@hidden> writes:

 juhp> AC_CHECK_LIB(z, gzsetparams,
 juhp> AC_CHECK_HEADER(zlib.h,,
 juhp> AC_MSG_ERROR(zlib headers not found)),
 juhp> AC_MSG_ERROR(zlib library not found))

 juhp> Is this a known problem?

It's called "underquoting".

AC_CHECK_LIB(z, gzsetparams,
             [AC_CHECK_HEADER(zlib.h,,[AC_MSG_ERROR(zlib headers not found)])],
             [AC_MSG_ERROR(zlib library not found)])

See the node 'Autoconf Language' in the manual for details.
-- 
Alexandre Duret-Lutz



reply via email to

[Prev in Thread] Current Thread [Next in Thread]