X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-perl%2Fperl_back.h;h=fe1b9a635754b332a96a1f1cbf191d3bf2de280f;hb=d4124e0e031f5b76a80f9c25a04146d334bcf898;hp=445893f8053c0bd2cfba58bfa435f1a7178f0606;hpb=b7beec16639919fa80f76f0e72db9afde77d32be;p=openldap diff --git a/servers/slapd/back-perl/perl_back.h b/servers/slapd/back-perl/perl_back.h index 445893f805..fe1b9a6357 100644 --- a/servers/slapd/back-perl/perl_back.h +++ b/servers/slapd/back-perl/perl_back.h @@ -1,22 +1,75 @@ +/* $OpenLDAP$ */ +/* This work is part of OpenLDAP Software . + * + * Copyright 1999-2008 The OpenLDAP Foundation. + * Portions Copyright 1999 John C. Quillan. + * Portions Copyright 2002 myinternet Limited. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ + #ifndef PERL_BACK_H #define PERL_BACK_H 1 -#include +#include +#include +#undef _ /* #defined by both Perl and ac/localize.h */ +#include "asperl_undefs.h" + +#include "portable.h" + +#include "slap.h" LDAP_BEGIN_DECL /* + * From Apache mod_perl: test for Perl version. */ + +#if defined(pTHX_) || (PERL_REVISION > 5 || (PERL_REVISION == 5 && PERL_VERSION >= 6)) +#define PERL_IS_5_6 +#endif + #define EVAL_BUF_SIZE 500 -extern PerlInterpreter *perl_interpreter; -extern pthread_mutex_t perl_interpreter_mutex; +extern ldap_pvt_thread_mutex_t perl_interpreter_mutex; + +#ifdef PERL_IS_5_6 +/* We should be using the PL_errgv, I think */ +/* All the old style variables are prefixed with PL_ now */ +# define errgv PL_errgv +# define na PL_na +#endif + +#if defined( HAVE_WIN32_ASPERL ) || defined( USE_ITHREADS ) +/* pTHX is needed often now */ +# define PERL_INTERPRETER my_perl +# define PERL_BACK_XS_INIT_PARAMS pTHX +# define PERL_BACK_BOOT_DYNALOADER_PARAMS pTHX, CV *cv +#else +# define PERL_INTERPRETER perl_interpreter +# define PERL_BACK_XS_INIT_PARAMS void +# define PERL_BACK_BOOT_DYNALOADER_PARAMS CV *cv +#endif + +extern PerlInterpreter *PERL_INTERPRETER; + typedef struct perl_backend_instance { - char *pb_module_name; - SV *pb_obj_ref; + char *pb_module_name; + SV *pb_obj_ref; + int pb_filter_search_results; } PerlBackend; LDAP_END_DECL -#endif +#include "proto-perl.h" + +#endif /* PERL_BACK_H */