summaryrefslogtreecommitdiff
path: root/NetWare
Commit message (Collapse)AuthorAgeFilesLines
* Purge sfio support from configure.com, Configure and related files.Nicholas Clark2013-12-272-15/+0
| | | | | | | Most of these are actually generated, so the maintenance complexity reduction is not as impressive as the diffstat suggests. (Incorporating a fix from Merijn)
* Purge sfio support, which has been broken for a decade.Nicholas Clark2013-12-271-1/+0
| | | | | | | | | | | The last Perl release that built with -Dusesfio was v5.8.0, and even that failed many regression tests. Every subsequent release fails to build, and in the decade that has passed we have had no bug reports about this. So it's safe to delete all the code. The Configure related code will be purged in a subsequent commit. 2 references to sfio intentionally remain in fakesdio.h and nostdio.h, as these appear to be for using its stdio API-compatibility layer.
* Bump version number from 5.19.7 to 5.19.8.Abigail2013-12-202-7/+7
|
* Bump the perl version in various places for v5.19.7Chris 'BinGOs' Williams2013-11-202-7/+7
|
* Bump version for Perl 5.19.6Steve Hay2013-10-202-7/+7
|
* Removed the define for FCALLBrian Fraser2013-09-231-1/+0
| | | | | This is a leftover from the PERL_OBJECT days; These days it was only used on one spot and did nothing useful.
* Bump version for 5.19.5Steve Hay2013-09-202-7/+7
|
* Regenerate Configure and chainsaw voidflagsH.Merijn Brand2013-09-162-27/+0
|
* [perl #115928] Configure now selects our internal drand48()Tony Cook2013-09-131-5/+5
|
* Remove references to GNU DLD from Configure and config.sh scripts.Nicholas Clark2013-09-051-2/+1
| | | | | Specifically eliminated i_dld, a variable indicating that <dld.h> should be included, and remove dld from the list of wanted libraries.
* Bump version for 5.19.4Steve Hay2013-08-202-7/+7
|
* bump version to v5.19.3Aristotle Pagaltzis2013-07-222-7/+7
|
* bump version to v5.19.2David Golden2013-06-202-7/+7
|
* bump version to 5.19.1Ricardo Signes2013-05-202-7/+7
|
* Remove cpan/Pod-LaTeX and pod2latex utilityChris 'BinGOs' Williams2013-05-181-2/+0
|
* bump version to 5.19.0Ricardo Signes2013-05-182-7/+7
|
* Bump version to 5.18.0-RC0Ricardo Signes2013-05-072-7/+7
| | | | | | | | This was done with: ./perl -Ilib Porting/bump-perl-version -i 5.17.12 5.18.0 Followed by two tiny manual edits: INSTALL and patchlevel.h
* Bump the perl version in various places for 5.17.12Ricardo Signes2013-04-202-7/+7
| | | | ...even though it should not get released
* Bump version to5.17.11Max Maischein2013-03-222-7/+7
|
* Split out hash functions into new file and turn into inline static functionsYves Orton2013-03-191-0/+1
| | | | | This includes various tweaks related to building SipHash and other cleanup.
* Add bootstrap_charset/BOOTSTRAP_CHARSET for non-ASCII architecturesH.Merijn Brand2013-03-091-0/+1
|
* Bump to v5.17.10Chris 'BinGOs' Williams2013-02-202-7/+7
|
* Bump the Perl version in various places for 5.17.9Aaron Crane2013-01-202-7/+7
|
* Bump the perl version in various places for 5.17.8Dave Rolsky2012-12-182-7/+7
|
* Remove "register" declarationsKarl Williamson2012-11-242-5/+5
| | | | | | | This finishes the removal of register declarations started by eb578fdb5569b91c28466a4d1939e381ff6ceaf4. It neglected the ones in function parameter declarations, and didn't include things in dist, ext, and lib, which this does include
* bump version to 5.17.7Ricardo Signes2012-11-202-7/+7
|
* Bump the version to 5.17.6Florian Ragwitz2012-10-192-7/+7
|
* Bump the perl version to 5.17.5Florian Ragwitz2012-09-192-7/+7
|
* Add Configure probe for ip_mreq_sourceH.Merijn Brand2012-08-261-0/+2
| | | | Needed to upgrade Socket from CPAN
* Bump version to 5.17.4Steve Hay2012-08-202-7/+7
|
* Omnibus removal of register declarationsKarl Williamson2012-08-181-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes most register declarations in C code (and accompanying documentation) in the Perl core. Retained are those in the ext directory, Configure, and those that are associated with assembly language. See: http://stackoverflow.com/questions/314994/whats-a-good-example-of-register-variable-usage-in-c which says, in part: There is no good example of register usage when using modern compilers (read: last 10+ years) because it almost never does any good and can do some bad. When you use register, you are telling the compiler "I know how to optimize my code better than you do" which is almost never the case. One of three things can happen when you use register: The compiler ignores it, this is most likely. In this case the only harm is that you cannot take the address of the variable in the code. The compiler honors your request and as a result the code runs slower. The compiler honors your request and the code runs faster, this is the least likely scenario. Even if one compiler produces better code when you use register, there is no reason to believe another will do the same. If you have some critical code that the compiler is not optimizing well enough your best bet is probably to use assembler for that part anyway but of course do the appropriate profiling to verify the generated code is really a problem first.
* bump to version 5.17.3Tony Cook2012-07-202-7/+7
|
* Add IP probe for ip_mreqH.Merijn Brand2012-07-111-0/+1
| | | | Backport 2f1eb816b5cba6977b1a8159
* bump version to 5.17.2Jesse Luehrs2012-06-202-7/+7
|
* bump version to 5.17.1Jesse Luehrs2012-06-192-7/+7
|
* bump version to 5.17.0Ricardo Signes2012-05-202-7/+7
|
* bump version to 5.16.0 RC0Ricardo Signes2012-05-102-7/+7
| | | | | | | | Done with: ./perl -Ilib Porting/bump-perl-version -i 5.15.9 5.16.0 ...followed by a small edit to INSTALL and patchlevel.h.
* Bump the perl version in various places for 5.15.9Abigail2012-03-192-7/+7
|
* Bump versions from 5.15.7 to 5.15.8Max Maischein2012-02-202-7/+7
|
* Add new probes for IPv6 (LeoNerd)H.Merijn Brand2012-02-161-0/+2
|
* Revert "Add strptime probe"Ævar Arnfjörð Bjarmason2012-02-151-1/+0
| | | | This reverts commit 8852e312c3c616ab731ccbe7da54fb04eb8c3d30.
* Add strptime probeH.Merijn Brand2012-02-121-0/+1
|
* Bump the perl version in various places for v5.15.7Chris 'BinGOs' Williams2012-01-202-7/+7
|
* Add probe for isblank() (requested by khw)H.Merijn Brand2012-01-091-0/+1
|
* Bump the perl version in various places for 5.15.6Dave Rolsky2011-12-192-7/+7
|
* Bump the perl version for 5.15.5Steve Hay2011-11-202-7/+7
|
* Bump the perl version in various places for 5.15.4Florian Ragwitz2011-10-202-7/+7
|
* Where available, use _NSGetExecutablePath() to make $^X absolute.Nicholas Clark2011-09-271-0/+1
| | | | | | | | | In Configure, check whether _NSGetExecutablePath() can be used to find the absolute pathname of the executable. If so, set usensgetexecutablepath in config.sh and USE_NSGETEXECUTABLEPATH in config.h. If this is set, then use this approach in S_set_caret_X() to canonicalise $^X as an absolute path. This approach works on OS X, and possible on other platforms that use dyld.
* Where available, use sysctl() with KERN_PROC_PATHNAME to make $^X absolute.Nicholas Clark2011-09-271-0/+1
| | | | | | | | | | In Configure, check whether sysctl() and KERN_PROC_PATHNAME can be used to find the absolute pathname of the executable. If so, set usekernprocpathname in config.sh and USE_KERN_PROC_PATHNAME in config.h. If this is set, then use this approach in S_set_caret_X() to canonicalise $^X as an absolute path. This approach works on (at least) FreeBSD, and doesn't rely on the /proc filesystem existing, or /proc/curproc/file being present.
* Add a --regen option to checkcfgvar.pl to regenerate config files.Nicholas Clark2011-09-211-27/+27
| | | | | | | | | | Verify that the section of config file containing probed files is sorted lexically. If --regen is used, updated the file on disk with a correctly sorted version. (Except for configure.com, which has a different structure not amenable to automatic analysis and update, hence still has to be updated manually.) Ensure all config files are correctly sorted.