diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-01-09 10:54:58 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-01-09 11:46:33 +0000 |
commit | 897d398936dd2fc088a265fba2a7b62fa97ed458 (patch) | |
tree | 38e2294c657822f375315f923e1daec3364e9ed0 /NetWare | |
parent | 146326cb2bb55642adc3a8dbb7adf592f2e2e4e3 (diff) | |
download | perl-897d398936dd2fc088a265fba2a7b62fa97ed458.tar.gz |
Generate pp_* prototypes in pp_proto.h, and remove pp.sym
Eliminate the #define pp_foo Perl_pp_foo(pTHX) macros, and update the 13
locations that relied on them.
regen/opcode.pl now generates prototypes for the PP functions directly, into
pp_proto.h. It no longer writes pp.sym, and regen/embed.pl no longer reads
this, removing the only ordering dependency in the regen scripts. opcode.pl
is now responsible for prototypes for pp_* functions. (embed.pl remains
responsible for ck_* functions, reading from regen/opcodes)
Diffstat (limited to 'NetWare')
-rw-r--r-- | NetWare/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/NetWare/Makefile b/NetWare/Makefile index 426561a621..3fb7156af6 100644 --- a/NetWare/Makefile +++ b/NetWare/Makefile @@ -1063,7 +1063,7 @@ $(PERLIMPLIB): perllib.imp # $(XCOPY) $(PERLIMPLIB) $(COREDIR) # @echo $(PERLIMPLIB) Done -perllib.imp : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\pp.sym ..\makedef.pl +perllib.imp : $(MINIPERL) $(CONFIGPM) ..\global.sym ..\makedef.pl # $(MINIPERL) -w ..\makedef.pl PLATFORM=netware FILETYPE=def $(ADD_BUILDOPT) \ # CCTYPE=$(CCTYPE) > perllib.def @echo (Perl) > perl.imp |