diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-18 13:11:49 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-18 13:11:49 +0000 |
commit | a6ec74c1448e028e8d796742c81e78fb067bf603 (patch) | |
tree | 316c1c9c0b1582643884c4cb62fa28d578b88412 /win32 | |
parent | 72802890534be7b33c8ac870fc565ebbe0a9f388 (diff) | |
download | perl-a6ec74c1448e028e8d796742c81e78fb067bf603.tar.gz |
Split off the pack/unpack code, from Nicholas Clark.
p4raw-id: //depot/perl@10685
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 1 | ||||
-rw-r--r-- | win32/makefile.mk | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/win32/Makefile b/win32/Makefile index 0df7e295c4..38458ace80 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -511,6 +511,7 @@ MICROCORE_SRC = \ ..\pp.c \
..\pp_ctl.c \
..\pp_hot.c \
+ ..\pp_pack.c \
..\pp_sys.c \
..\regcomp.c \
..\regexec.c \
diff --git a/win32/makefile.mk b/win32/makefile.mk index 3fd644f39f..f99b4ce668 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -652,7 +652,9 @@ MICROCORE_SRC = \ ..\globals.c \
..\gv.c \
..\hv.c \
+ ..\locale.c \
..\mg.c \
+ ..\numeric.c \
..\op.c \
..\perl.c \
..\perlapi.c \
@@ -660,6 +662,7 @@ MICROCORE_SRC = \ ..\pp.c \
..\pp_ctl.c \
..\pp_hot.c \
+ ..\pp_pack.c \
..\pp_sys.c \
..\regcomp.c \
..\regexec.c \
@@ -671,8 +674,6 @@ MICROCORE_SRC = \ ..\universal.c \
..\utf8.c \
..\util.c \
- ..\numeric.c \
- ..\locale.c \
..\xsutils.c
EXTRACORE_SRC += perllib.c
|