diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-04 21:14:22 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-04 21:14:22 +0000 |
commit | bb636fa4a888d369d95f00a75923476bd0dae49f (patch) | |
tree | ddf6d6c614fb7d0f59c580fe57980e678b353a43 /ext | |
parent | 76df47578dba2a9fdfb9999a2625aa04b4cf475a (diff) | |
download | perl-bb636fa4a888d369d95f00a75923476bd0dae49f.tar.gz |
DB3 NDBM/ODBM emulation tweaks from Stanislav Brabec <utx@penguin.cz>.
p4raw-id: //depot/perl@8320
Diffstat (limited to 'ext')
-rw-r--r-- | ext/NDBM_File/NDBM_File.xs | 5 | ||||
-rw-r--r-- | ext/ODBM_File/ODBM_File.xs | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/ext/NDBM_File/NDBM_File.xs b/ext/NDBM_File/NDBM_File.xs index 49a1db5e56..c417eb693e 100644 --- a/ext/NDBM_File/NDBM_File.xs +++ b/ext/NDBM_File/NDBM_File.xs @@ -1,6 +1,11 @@ #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> */ +#undef ENTER #include <ndbm.h> typedef struct { diff --git a/ext/ODBM_File/ODBM_File.xs b/ext/ODBM_File/ODBM_File.xs index 150f2ef894..27174ef062 100644 --- a/ext/ODBM_File/ODBM_File.xs +++ b/ext/ODBM_File/ODBM_File.xs @@ -3,6 +3,11 @@ #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 |