Fix version check in previous

This commit is contained in:
Howard Chu 2003-03-13 02:01:14 +00:00
parent 573349a318
commit 30c5915460

View file

@ -8,7 +8,7 @@ LDAP_BEGIN_DECL
* From Apache mod_perl: test for Perl version.
*/
#if defined(pTHX_) || (PERL_REVISION >= 5 && PERL_VERSION >= 6)
#if defined(pTHX_) || (PERL_REVISION > 5 || (PERL_REVISION == 5 && PERL_VERSION >= 6))
#define PERL_IS_5_6
#endif