You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by it...@iijlab.net on 2002/06/19 06:43:40 UTC

Re: your mail

>> 	the attached patch may not be correct. sorry.
>Well, just keep me posted.

	the attached patch worked fine.  again, AC_DEFINE() will emit
	$apr_devrandom, verbatim.  we need AC_DEFINE_UNQUOTED.

	does not work:	AC_DEFINE(DEV_RANDOM, [$apr_devrandom])
		#define DEV_RANDOM $apr_devrandom
	works fine:	AC_DEFINE_UNQUOTED(DEV_RANDOM, "$apr_devrandom")
		#define DEV_RANDOM foo

itojun