>>> "juhp" == Jens Petersen <[EMAIL PROTECTED]> 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