From a568b27dbf26e3cbda44a07e578cdadb8633e5ba Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 30 Apr 2009 14:15:05 +0000 Subject: [PATCH] DBD-SQLite: removed several well-known macros that have been defined since perl 5.6 --- dbdimp.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/dbdimp.c b/dbdimp.c index 0281e6e..1a73f48 100644 --- a/dbdimp.c +++ b/dbdimp.c @@ -4,20 +4,8 @@ DBISTATE_DECLARE; -#ifndef SvPV_nolen -#define SvPV_nolen(x) SvPV(x,PL_na) -#endif - #define SvPV_nolen_undef_ok(x) (SvOK(x) ? SvPV_nolen(x) : "undef") -#ifndef call_method -#define call_method(x,y) perl_call_method(x,y) -#endif - -#ifndef call_sv -#define call_sv(x,y) perl_call_sv(x,y) -#endif - #define sqlite_error(h,xxh,rc,what) _sqlite_error(aTHX_ __FILE__, __LINE__, h, xxh, rc, what) /* XXX: is there any good way to use pTHX_/aTHX_ here like above? */