In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/bce1a96b23c98bfb16c4770978518b5e69769b4f?hp=7d0fb9b8e300e95212ca1a77b0d706eb5567788c>
- Log ----------------------------------------------------------------- commit bce1a96b23c98bfb16c4770978518b5e69769b4f Author: Nicholas Clark <[email protected]> Date: Fri Dec 9 16:43:21 2011 +0100 Remove the obsolete code for NO_EMBED from sdbm.h Support for NO_EMBED was removed by commit 22c35a8c2392967 in 1998. Minitrue attempted to eliminate all mention of it in 2003 with commit a0a44e237c19cc2b, but missed this code in sdbm.h ----------------------------------------------------------------------- Summary of changes: ext/SDBM_File/sdbm/sdbm.h | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/ext/SDBM_File/sdbm/sdbm.h b/ext/SDBM_File/sdbm/sdbm.h index 53fc366..2b8d0e9 100644 --- a/ext/SDBM_File/sdbm/sdbm.h +++ b/ext/SDBM_File/sdbm/sdbm.h @@ -250,11 +250,7 @@ Free_t Perl_mfree proto((Malloc_t where)); #else # ifndef memcmp /* maybe we should have included the full embedding header... */ -# ifdef NO_EMBED -# define memcmp my_memcmp -# else -# define memcmp Perl_my_memcmp -# endif +# define memcmp Perl_my_memcmp #ifndef __cplusplus extern int memcmp proto((char*, char*, int)); #endif -- Perl5 Master Repository
