diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-26 00:27:57 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1997-11-26 00:27:57 +0000 |
commit | c31fac668b253062b943c71d3452e678b6f02609 (patch) | |
tree | bf9ee12ba220ede3aadb62c3004f00f0cedf9962 /embed.h | |
parent | 769c30bc4bb5d7abeb7306e297a4071100a0e741 (diff) | |
download | perl-c31fac668b253062b943c71d3452e678b6f02609.tar.gz |
[win32] Various changes to make it build cleanly and pass all tests:
- needed to run `perl embed.pl`
- use PERL_CORE instead of PERLDLL in places that do mean PERL_CORE
- fix prototypes for a few declarations (Borland is finally quiet)
- move declaration of Mymalloc etc to perl.h (since win32 and other
ports may #define malloc themselves, to let extensions bind to
the version that perl used)
- move struct reg_data into a public header file, since it is
referenced in a public datatype
- win32 makefile fixes
- fix remaining s/thread/perl_thread/
p4raw-id: //depot/win32/perl@304
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -254,7 +254,6 @@ #define he_root Perl_he_root #define hexdigit Perl_hexdigit #define hints Perl_hints -#define hoistmust Perl_hoistmust #define hv_clear Perl_hv_clear #define hv_delayfree_ent Perl_hv_delayfree_ent #define hv_delete Perl_hv_delete @@ -911,6 +910,8 @@ #define rsignal_save Perl_rsignal_save #define rsignal_state Perl_rsignal_state #define runops Perl_runops +#define runops_debug Perl_runops_debug +#define runops_standard Perl_runops_standard #define rxres_free Perl_rxres_free #define rxres_restore Perl_rxres_restore #define rxres_save Perl_rxres_save |