mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-17 20:34:08 -05:00
Fix version check in previous
This commit is contained in:
parent
573349a318
commit
30c5915460
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue