diff options
author | Abhijit Menon-Sen <ams@wiw.org> | 2002-08-23 02:54:09 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-08-23 02:54:09 +0000 |
commit | b53307ead6e86d4eafd7cc2ea1c0dbe964e63e43 (patch) | |
tree | c05dd58a512c363a9d9c1a3459310ca07c06bfc8 /ext | |
parent | a22cf6270c3177e6e3d5b286c4478779868634a0 (diff) | |
download | perl-b53307ead6e86d4eafd7cc2ea1c0dbe964e63e43.tar.gz |
Incorporate fix from JHI at:
http://rt.perl.org/rt2/Ticket/Display.html?id=16708
p4raw-id: //depot/perl@17761
Diffstat (limited to 'ext')
-rw-r--r-- | ext/NDBM_File/NDBM_File.xs | 4 | ||||
-rw-r--r-- | ext/ODBM_File/ODBM_File.xs | 5 |
2 files changed, 0 insertions, 9 deletions
diff --git a/ext/NDBM_File/NDBM_File.xs b/ext/NDBM_File/NDBM_File.xs index 201ab6cc05..5e02af7657 100644 --- a/ext/NDBM_File/NDBM_File.xs +++ b/ext/NDBM_File/NDBM_File.xs @@ -1,10 +1,6 @@ #include "EXTERN.h" #include "perl.h" #include "XSUB.h" -/* If using the DB3 emulation, ENTER is defined both - * by DB3 and Perl. We drop the Perl definition now. - * See also INSTALL section on DB3. - * -- Stanislav Brabec <utx@penguin.cz> */ #include <ndbm.h> typedef struct { diff --git a/ext/ODBM_File/ODBM_File.xs b/ext/ODBM_File/ODBM_File.xs index 376af1f0ba..fb3b5740ec 100644 --- a/ext/ODBM_File/ODBM_File.xs +++ b/ext/ODBM_File/ODBM_File.xs @@ -3,11 +3,6 @@ #include "XSUB.h" #ifdef I_DBM -/* If using the DB3 emulation, ENTER is defined both - * by DB3 and Perl. We drop the Perl definition now. - * See also INSTALL section on DB3. - * -- Stanislav Brabec <utx@penguin.cz> */ -# undef ENTER # include <dbm.h> #else # ifdef I_RPCSVC_DBM |