From ff68c7194e176ca1907544a3a65684b76834d0fe Mon Sep 17 00:00:00 2001 From: Perl 5 Porters Date: Sat, 30 Nov 1996 05:31:00 +1200 Subject: [inseparable changes from patch from perl5.003_09 to perl5.003_10] CORE LANGUAGE CHANGES Subject: Allow &{sub {...}} without warning From: Chip Salzenberg Files: toke.c Subject: Make parens optional on [gs]ethost and [gs]et{pw,gr} function From: Chip Salzenberg Files: toke.c Subject: Fix syntax error with "$x [0]" and "$x {y}" and "@x {y}" From: Chip Salzenberg Files: toke.c DOCUMENTATION Subject: Improve documentation for sysread() and syswrite() From: Chip Salzenberg Files: pod/perlfunc.pod Subject: Document how to use $SIG{ALRM} and alarm() Date: Tue, 26 Nov 1996 11:42:49 -0500 From: Roderick Schertler Files: pod/perlfunc.pod Msg-ID: <5898.849026569@eeyore.ibcinc.com> (applied based on p5p patch as commit 5fa5e7dfc2abaaadd377c97cd1ebe78ea844da88) OTHER CORE CHANGES Subject: Hash key memory corruption fix and naming cleanup From: Chip Salzenberg Files: hv.c hv.h perl.h Subject: Undo broken perf. patch (PADTMP stealing) From: Chip Salzenberg Files: sv.c Subject: Make SV unstudied in sv_gets() From: Chip Salzenberg Files: sv.c Subject: Better support for UVs From: Paul Marquess Files: global.sym old_global.sym perl.h pp.c pp.h proto.h sv.c sv.h Subject: Minor locale cleanups From: Chip Salzenberg Files: t/lib/posix.t util.c Accept "POSIX" locale as standard like "C". Reset locale to 'C' when testing strtod() in t/lib/posix.t. Subject: Always taint result of sprintf() on float From: Chip Salzenberg Files: doop.c Subject: Fix spurious warning from bitwise string ops From: Chip Salzenberg Files: doop.c Subject: Eliminate warning on {,sys}read(,$newvar,) From: Chip Salzenberg Files: doop.c pp_sys.c Subject: Namespace cleanup From: Chip Salzenberg Files: global.sym old_global.sym perl.h Subject: Modify perl_exp.SH; create old_perl_exp.SH; document old_* From: Chip Salzenberg Files: Configure INSTALL MANIFEST old_perl_exp.SH perl_exp.SH PORTABILITY Subject: Reliable signal patch Date: Tue, 26 Nov 1996 05:40:50 -0500 (EST) From: Kenneth Albanowski Files: global.sym mg.c old_global.sym perl.h pp_sys.c proto.h util.c Msg-ID: (applied based on p5p patch as commit 679728958e74b0ccd6d61567d84851f1ef994e1f) Subject: Emulate missing flock() with either fcntl() or lockf() From: Chip Salzenberg Files: pp_sys.c Subject: 3_09: minor patches for OS/2 Date: Wed, 27 Nov 1996 03:30:05 -0500 (EST) From: Ilya Zakharevich Files: doio.c global.sym malloc.c old_global.sym os2/Makefile.SHs os2/OS2/ExtAttr/Makefile.PL os2/OS2/PrfDB/Makefile.PL os2/OS2/Process/Makefile.PL os2/OS2/REXX/Makefile.PL os2/os2.c os2/os2ish.h perl.h Subject: 3_09: minor patches This patches mostly enable commpilation under OS/2, and fix malloc.c. Enjoy, p5p-msgid: <199611270830.DAA04985@monk.mps.ohio-state.edu> Subject: Re: 5.003_09 and QNX Date: Wed, 27 Nov 96 13:36:06 est From: Norton Allen Files: Configure MANIFEST README.qnx hints/qnx.sh qnx/ar qnx/cpp t/TEST toke.c util.c x2p/proto.h Msg-ID: <9611271836.AA14460@bottesini.harvard.edu> (applied based on p5p patch as commit c5117498be098729dc2af28089bd130c88c8d42b) --- perl_exp.SH | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'perl_exp.SH') diff --git a/perl_exp.SH b/perl_exp.SH index 1c1848b64a..17538634e1 100755 --- a/perl_exp.SH +++ b/perl_exp.SH @@ -5,6 +5,9 @@ # Create the export list for perl. # Needed by AIX to do dynamic linking. +# NOTE: If you're using 'old_embed.pl', don't use this script! +# Use 'old_perl_exp.SH' instead. + # This simple program relys on 'global.sym' being up to date # with all of the global symbols that a dynamicly link library # might want to access. @@ -19,10 +22,11 @@ echo "#!" > perl.exp sed -n '/^[A-Za-z]/ s/^/Perl_/p' global.sym >> perl.exp +# # also add symbols from interp.sym # They are only needed if -DMULTIPLICITY is not set but it # doesn't hurt to include them anyway. -sed -n '/^[A-Za-z]/ p' interp.sym >> perl.exp +sed -n '/^[A-Za-z]/ s/^/Perl_/p' interp.sym >> perl.exp # extra globals not included above. cat <> perl.exp @@ -30,6 +34,9 @@ perl_init_i18nl10n perl_init_i18nl14n perl_new_collate perl_new_ctype +perl_new_numeric +perl_numeric_local +perl_numeric_standard perl_alloc perl_construct perl_destruct -- cgit v1.2.1