Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: > >>> "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.
Thank you. However I note that this seems to be a change of behaviour compared to 2.52. autoconf-2.52 on my configure.ac file generates a good configure file. Jens
