summaryrefslogtreecommitdiff
path: root/makedef.pl
Commit message (Collapse)AuthorAgeFilesLines
* Oops. Forgot to propagate the rename of Perl_re_dup to Perl_re_dup_gutsNicholas Clark2008-01-041-1/+1
| | | | | into makedef.pl p4raw-id: //depot/perl@32835
* RE: [PATCH] s/perl510/perl511/gJan Dubois2007-12-251-2/+2
| | | | | | From: "Jan Dubois" <jand@activestate.com> Message-ID: <0cdf01c84684$f99c3310$ecd49930$@com> p4raw-id: //depot/perl@32722
* Rename "perl59" to "perl510"Jan Dubois2007-11-201-2/+2
| | | | | | From: "Jan Dubois" <jand@activestate.com> Message-ID: <03cd01c82b07$581a1950$084e4bf0$@com> p4raw-id: //depot/perl@32411
* Following 32238, change "interpreter_size" to "interp_size" in the new Craig A. Berry2007-11-111-2/+2
| | | | | | global symbols to keep overall symbol length within 31 characters, which is what the VMS C compiler with default flags can handle. p4raw-id: //depot/perl@32275
* RE: Change 32238: "Bake" the values of PERL_REVISION, PERL_VERSION and ↵Jan Dubois2007-11-081-0/+13
| | | | | | | | | | PERL_SUBVERSION From: "Jan Dubois" <jand@activestate.com> Message-ID: <058701c821ca$73d071d0$5b715570$@com> (plus a couple of other similar fixes for change 32238 that Jan missed) p4raw-id: //depot/perl@32242
* Add support for Visual C++ 2008 Express Edition (Beta 2)Steve Hay2007-08-291-1/+1
| | | p4raw-id: //depot/perl@31761
* RE: Problem in Win32CORE when building PAR-Packer-0.975 with bleadperl on Win32Jan Dubois2007-06-281-0/+2
| | | | | | | | | | | From: "Jan Dubois" <jand@activestate.com> Message-ID: <02bd01c7b90b$49863720$dc92a560$@com> Rearranges the initialization of Win32CORE. The Perl interpreter isn't fully initialized when Perl_init_os_extras() in win32/win32.c is called, so it is not safe to use the Perl calling mechanism yet. Fixes a problem building PAR-Packer on Win32. p4raw-id: //depot/perl@31490
* Stop VC7 and VC8 complaining about the DESCRIPTION statementSteve Hay2007-06-061-1/+5
| | | | | in perldll.def (it isn't supported any more). p4raw-id: //depot/perl@31343
* delete thrdvar.h and move its contents to intrpvar.hDave Mitchell2007-05-201-9/+4
| | | p4raw-id: //depot/perl@31245
* Fix non-threaded build on Win32 following #30980Steve Hay2007-04-191-0/+1
| | | p4raw-id: //depot/perl@30985
* Symbol export nit, found by YvesRafael Garcia-Suarez2007-04-041-0/+7
| | | p4raw-id: //depot/perl@30842
* Change 30461 was wrong. As ext/re (re)builds the regexp engine withNicholas Clark2007-03-051-1/+0
| | | | | | | -DDEBUGGING, it's going to need PL_reg_name even if core perl doesn't. So something is always going to use it, so always define it, and always export it. (But only define it once, so that static builds work.) p4raw-id: //depot/perl@30464
* It seems that change 30451 should also have arranged to exportNicholas Clark2007-03-041-0/+1
| | | | | | PL_reg_name properly. Hopefuly this will fix it, but I don't have access to any platform where I can test this directly. p4raw-id: //depot/perl@30461
* newPADOP is only used under ithreads, so don't waste space by compilingNicholas Clark2007-01-271-0/+1
| | | | | it for non-threaded builds. p4raw-id: //depot/perl@30032
* Make PERL_OLD_COPY_ON_WRITE build again. Inline Perl_sv_release_IVX().Nicholas Clark2007-01-171-1/+0
| | | | | (Currently it fails ext/Compress/Raw/Zlib/t/07bufsize.t) p4raw-id: //depot/perl@29853
* makedef.pl should be able to load "strict"Rafael Garcia-Suarez2007-01-121-0/+2
| | | p4raw-id: //depot/perl@29774
* fix PL_parser_dup symbolDave Mitchell2007-01-121-0/+1
| | | p4raw-id: //depot/perl@29766
* Make makedef.pl warnings and strict clean.Nicholas Clark2007-01-091-8/+12
| | | p4raw-id: //depot/perl@29740
* [PATCH] Use short pathnames in $^X and @INC if the long form cannot be ↵Jan Dubois2007-01-031-0/+1
| | | | | | | | | | | | | represented in the current codepage Date: Thu, 28 Dec 2006 18:59:40 -0800 Message-ID: <vq09p2p09k6rcu6c9t0mab3vnc335ghg9m@4ax.com> Subject: Re: [PATCH] Use short pathnames in $^X and @INC if the long form cannot be represented in the current codepage From: Jan Dubois <jand@ActiveState.com> Date: Wed, 03 Jan 2007 08:12:35 -0800 Message-ID: <orknp2pj17265modfosjkp2qtt4bdgtgjp@4ax.com> p4raw-id: //depot/perl@29675
* Make the ptr_table functions available in an unthreaded perl, as otherNicholas Clark2007-01-031-11/+0
| | | | | code (such as Storable) can take advantage of them. p4raw-id: //depot/perl@29673
* Fix a couple of linker errors on Win32Steve Hay2007-01-021-0/+7
| | | p4raw-id: //depot/perl@29661
* really should test compile in AIX or something (fixup after the Series 90 patch)Jarkko Hietaniemi2007-01-021-0/+2
| | | | | Message-Id: <200701020115.l021FgtC495074@kosh.hut.fi> p4raw-id: //depot/perl@29656
* Skip Perl_regdupe_internal rather than Perl_regdupeSteve Hay2006-12-051-1/+1
| | | | | when building on Win32 without ithreads (see #29430) p4raw-id: //depot/perl@29464
* Don't try to export fd_refcnt symbols when building without USE_PERLIOSteve Hay2006-11-301-2/+9
| | | | | to keep the Win32 linker happy p4raw-id: //depot/perl@29425
* Re: Change 29050: Memory leak fix, by JarkkoJarkko Hietaniemi2006-10-211-0/+1
| | | | | | | Message-ID: <453A97FA.5090403@iki.fi> (Make AIX linker happy) p4raw-id: //depot/perl@29076
* Adjustment to symbol lists after latest changes (by Jarkko)Rafael Garcia-Suarez2006-10-201-0/+11
| | | p4raw-id: //depot/perl@29066
* I think we need to skip PL_regdupe as well as Perl_regdupeSteve Hay2006-09-271-0/+1
| | | | | | | when USE_ITHREADS is not defined See: http://www.nntp.perl.org/group/perl.daily-build.reports/41274 p4raw-id: //depot/perl@28894
* Make Perl_regdupe only exist for threaded perls.Nicholas Clark2006-09-261-0/+1
| | | p4raw-id: //depot/perl@28893
* Perl_PerlIO_context_layers and PerlIO_apply_layers, as well as other ↵Yves Orton2006-05-221-0/+1
| | | | | | | | | unexported/undefined entities... (patch 28258/28264 incomplete?) Message-ID: <9b18b3110605210606l441b69b3lf6934a15d9a26e4b@mail.gmail.com> (only the makedef.pl and perlio.c patches) p4raw-id: //depot/perl@28275
* In Change 27764 I forgot to at PL_hints_mutex to the list of symbols toNicholas Clark2006-04-171-0/+1
| | | | | | exclude when not compiling with ithreads. It would be good to automate the processing of this. p4raw-id: //depot/perl@27870
* remove some cruft from makedef.plJan Dubois2006-04-161-12/+0
| | | | | | From: "Jan Dubois" <jand@ActiveState.com> Message-ID: <022e01c66134$d7a8dec0$2217a8c0@candy> p4raw-id: //depot/perl@27848
* Mark new_warnings_bitfield as XE, and add it to __DATA__ in makedef.plNicholas Clark2006-04-141-1/+1
| | | | | Remove a reference to the deleted function Perl_refcounted_he_dup. p4raw-id: //depot/perl@27800
* Serialise changes to %^H onto the current COP. Return the compile timeNicholas Clark2006-03-311-0/+1
| | | | | | state of %^H as an eleventh value from caller. This allows users to write pragmas. p4raw-id: //depot/perl@27643
* Only compile Perl_hv_assert with DEBUGGING.Nicholas Clark2006-03-281-0/+1
| | | p4raw-id: //depot/perl@27622
* Move the 12 static MAD variables from toke.c into the interpeterNicholas Clark2006-03-101-0/+12
| | | | | structure. p4raw-id: //depot/perl@27466
* Tweak change 27457 - make PL_lasttoke MAD only, but teach makedef.plNicholas Clark2006-03-101-1/+7
| | | | | about MADness (and unMADness - maybe there is a special word for that) p4raw-id: //depot/perl@27460
* MAD changes to dump.cNicholas Clark2006-03-081-0/+14
| | | p4raw-id: //depot/perl@27422
* Add MAD changes to pad code (new function Perl_pad_peg)Nicholas Clark2006-03-081-0/+1
| | | p4raw-id: //depot/perl@27419
* Don't try to export PL_madskills/PL_xmlfp when they're not definedSteve Hay2006-03-081-0/+7
| | | | | | (Fixes Win32 linker error introduced by change #27408) p4raw-link: @27408 on //depot/perl: 598921a7d8d43baa942b750d26a55dadca2c13d5 p4raw-id: //depot/perl@27413
* Don't export PL_memory_debug_header to Win32 (and others) unless Steve Peters2006-02-051-0/+6
| | | | | PERL_TRACK_MEMPOOL is defined. p4raw-id: //depot/perl@27088
* SPRINTF_RETURNS_STRLEN isn't really a compile-time option Steve Hay2006-01-241-0/+2
| | | | | | | | | | | | From: Gisle Aas <gisle@ActiveState.com> Date: 23 Jan 2006 02:12:04 -0800 Message-ID: <lr3bjfb6dn.fsf@caliper.activestate.com> Subject: RE: SPRINTF_RETURNS_STRLEN isn't really a compile-time option From: "Jan Dubois" <jand@ActiveState.com> Date: Mon, 23 Jan 2006 11:30:51 -0800 Message-ID: <008001c62053$86adf680$2217a8c0@candy> p4raw-id: //depot/perl@26935
* Don't try to export PL_my_ctx_mutex and PL_my_cxt_* whenSteve Hay2006-01-041-0/+4
| | | | | | | PERL_IMPLICIT_CONTEXT is not defined Fixes non-threaded build errors on Win32 following change 26523 p4raw-id: //depot/perl@26653
* Skip my_cxt_init if PERL_IMPLICIT_CONTEXT isn't definedRafael Garcia-Suarez2005-12-301-0/+1
| | | | | (spotted by Jan Dubois) p4raw-id: //depot/perl@26531
* Don't try to export Perl_pad_sv when it isn't definedSteve Hay2005-12-131-0/+1
| | | | | Fixes a Win32 linker error in non-DEBUGGING builds following 26316 p4raw-id: //depot/perl@26336
* Always define PL_memory_wrap, and use it for the new sprintf checksRafael Garcia-Suarez2005-12-011-6/+0
| | | p4raw-id: //depot/perl@26239
* perlce touchesVadim Konovalov2005-11-231-1/+1
| | | | | | From: Konovalov, Vadim <vkonovalov@spb.lucent.com> Message-ID: <7DD1BE2C50259746ABB8683672D2089E12DDC3@itotest-1.spb.lucent.com> p4raw-id: //depot/perl@26200
* for winceVadim Konovalov2005-11-161-2/+3
| | | | | | From: "Konovalov, Vadim" <vkonovalov@spb.lucent.com> Message-ID: <7DD1BE2C50259746ABB8683672D2089E12DC9F@itotest-1.spb.lucent.com> p4raw-id: //depot/perl@26140
* sort/multicall patchRobin Houston2005-11-021-3/+0
| | | | | Message-ID: <20051029203307.GA8869@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@25953
* Most platforms don't actually need PL_pidstatus, or the associatedNicholas Clark2005-10-261-0/+6
| | | | | .5K of code. p4raw-id: //depot/perl@25850
* Add my_sprintf, which is usually just a macro for sprintf, for thoseNicholas Clark2005-10-241-0/+5
| | | | | | | places where we want to use the return value of sprintf. This allows a wrapper to be used for platforms where the C library isn't ANSI- conformant. p4raw-id: //depot/perl@25832