summaryrefslogtreecommitdiff
path: root/Cross
Commit message (Collapse)AuthorAgeFilesLines
* Bump version: 5.26.0 -> 5.27.0, including fixesSawyer X2017-05-312-38/+38
|
* Bump version: 5.25.12 -> 5.26.0Sawyer X2017-04-212-46/+46
|
* Version debump: 5.26.0 -> 5.25.12Sawyer X2017-04-192-46/+46
|
* Version bump: 5.25.11 -> 5.26.0Sawyer X2017-03-202-46/+46
|
* bump version to 5.25.11reneeb2017-02-212-40/+40
|
* Bump the perl version in various places for 5.25.10Abigail2017-01-202-40/+40
|
* Remove utils/c2ph and utils/pstructAbigail2017-01-161-2/+2
| | | | | | | | | | These programs are the same, just behave differently depending on under which name you call it. This is a very old script, originally dating from the perl3 era. It has been deprecated in favour of h2xs for a long time. In Perl 5.26, these utilities will no longer be available.
* Switch most open() calls to three-argument form.John Lightsey2016-12-231-1/+1
| | | | | | | | | | Switch from two-argument form. Filehandle cloning is still done with the two argument form for backward compatibility. Committer: Get all porting tests to pass. Increment some $VERSIONs. Run: ./perl -Ilib regen/mk_invlists.pl; ./perl -Ilib regen/regcharclass.pl For: RT #130122
* Bump the perl version in various places for 5.25.9Sawyer X2016-12-202-40/+40
|
* Bump the perl version in various places for 5.25.8Chad Granum2016-11-202-40/+40
|
* No default breaks win32 and VMSH.Merijn Brand2016-11-121-1/+1
|
* Remove "." from default @INC when default_inc_excludes_dot is setH.Merijn Brand2016-11-111-0/+1
| | | | | | | | | | | | | | | | Perl now provides a way to build perl without . in @INC by default. If you want this feature, you can build with -Ddefault_inc_excludes_dot Because the testing / make process for perl modules do not function well with . missing from @INC, Perl now supports the environment variable PERL_USE_UNSAFE_INC=1 which makes Perl behave as it previously did, returning . to @INC in all child processes. WARNING: PERL_USE_UNSAFE_INC has been provided during the perl 5.25 development cycle and is not guaranteed to function in perl 5.26. Update unit tests and default value files to work with the new %Config variable "default_inc_excludes_dot"
* Configure: add defs summarizing doublekind/longdblkindJarkko Hietaniemi2016-10-281-0/+13
| | | | | | | | | | For windows/netware It seems that many of the recent fp definitions have not been yet copied over there [1] [2], so went mostly by dead reckoning [3]. [1] Note that many of them are not absolutely necessary for building. [2] The proper updating involves doing stuff in win32, which I do not have. [3] As far as I can tell, Windows CE does not really not have long double.
* Bump version numbers ready for 5.25.7Aaron Crane2016-10-202-40/+40
|
* bumping the version number Stevan Little2016-09-242-40/+40
|
* Bump the perl version in various places for v5.25.5Chris 'BinGOs' Williams2016-08-202-40/+40
|
* Add probe for gai_strerrorH.Merijn Brand2016-08-111-0/+1
|
* forgot the cfgvarH.Merijn Brand2016-07-281-0/+1
|
* Bump version to 5.25.4Steve Hay2016-07-202-40/+40
| | | | (including regen/opcode.pl)
* Bump the perl version in various places for 5.25.3Matthew Horsfall2016-06-202-40/+40
|
* Add Configure probe for strerror_l()Aaron Crane2016-06-021-0/+1
| | | | | | | | | As requested by khw++ Until the relevant symbol is used, HAS_STRERROR_L must be mentioned explicitly in metaconfig.h. This corresponds to metaconfig d0838744f03cfe7642950ea91dd48f575d0bfd15.
* Add Configure probe for querylocale()Aaron Crane2016-06-021-0/+1
| | | | | | | | | As requested by khw++ Until the relevant symbol is used, HAS_QUERYLOCALE must be mentioned explicitly in metaconfig.h. This corresponds to metaconfig 541f0dd272df4f9326996727898393ac8f6626f7.
* Bump the perl version in various places for 5.25.2Sawyer X2016-05-212-40/+40
|
* bump version to v5.25.1: now open for businessRicardo Signes2016-05-092-40/+40
|
* bump version to v5.25.0Ricardo Signes2016-05-082-38/+38
|
* version bump: this is now v5.24.0-RC0!Ricardo Signes2016-04-102-46/+46
|
* Add probe for memmemH.Merijn Brand2016-03-251-0/+1
|
* Bump version in various placesAbigail2016-03-202-40/+40
|
* Add Configure probes for newlocale, freelocale, and uselocaleH.Merijn Brand2016-03-191-0/+3
|
* s/ar rcu/ar rc/ during linkingDavid Mitchell2016-03-141-2/+2
| | | | | | | | | | | | | | | | | | | | | The are a few places in Makefile.SH which do (approximately): rm $libfile ar rcu $libfile *.o The 'u' in 'rcu' seems redundant since the old lib file is always deleted just before being recreated; and more to the point, it generates warnings on recent Linux builds: /bin/ar: `u' modifier ignored since `D' is the default (see `U') This is because the 'u' modifier updates the archive, i.e. only replaces the objects which are newer in an existing archive. On my Linux system, ar by default operates in 'deterministic' mode, which means that it doesn't add timestamps etc (so that repeated builds will give identical binaries). In this mode 'u' can't work, hence the warning. So this commit just removes the 'u' flag.
* bump version to 5.23.9Sawyer X2016-02-202-40/+40
|
* Probe for and expose more fields for SA_SIGINFODagfinn Ilmari Mannsåker2016-01-261-0/+7
| | | | | | | | These are all specified by POSIX/SUSv3, but not all platforms have them, as mentioned in POSIX.pm. We can only test the pid, uid and code fields, since they are the only ones that are defined for a user-sent signal.
* bumping versionStevan Little2016-01-202-40/+40
|
* Add Configure support for fdclose() for [perl #126847].Andy Dougherty2016-01-041-0/+1
| | | | | This patch also adjusts the generated files suggested by Porting/checkcfgvar.pl.
* Bump the perl version in various places for 5.23.7David Golden2015-12-212-40/+40
|
* Bump the perl version in various places for 5.23.6Abigail2015-11-202-40/+40
|
* Revert "Remove unused filesystem stat symbols."Jarkko Hietaniemi2015-10-302-0/+34
| | | | | | | | | | | This reverts commit 821805a244cacd9869331999cd53407f3323206a. What's out, is out. perl #107904 Filesys-Df perl #108189 Filesys-DfPortable perl #108191 Filesys-Statvfs perl #126368 Filesys-DfPortable
* Bump version to 5.23.5Steve Hay2015-10-202-40/+40
|
* Remove unused filesystem stat symbols.Jarkko Hietaniemi2015-10-022-34/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | d_fs_data_s HAS_STRUCT_FS_DATA d_fstatfs HAS_FSTATFS d_fstatvfs HAS_FSTATVFS d_getfsstat HAS_GETFSSTAT d_getmnt HAS_GETMNT d_getmntent HAS_GETMNTENT d_hasmntopt HAS_HASMNTOPT d_statfs_f_flags HAS_STRUCT_STATFS_F_FLAGS d_statfs_s HAS_STRUCT_STATFS d_ustat HAS_USTAT i_mntent I_MNTENT i_sysmount I_SYS_MOUNT i_sysstatfs I_SYS_STATFS i_sysstatvfs I_SYS_STATVFS i_sysvfs I_SYS_VFS i_ustat I_USTAT Unused by the Perl core. As far as I can remember I added these scans long ago, for some purpose (df(1) kind of APIs?) but whatever it was, it obviously hasn't exactly caught fire in the last 15 years. Some rare uses of these APIs (not these defines, but e.g. statfs) in CPAN (like the Quota module), but those seem to do their own configuration.
* Bump the perl version in various places for 5.23.4.Peter Martini2015-09-212-40/+40
|
* Bump the perl version in various places for 5.23.3.Matthew Horsfall2015-08-202-40/+40
|
* Add time64 as its own build target.Jarkko Hietaniemi2015-07-222-2/+3
|
* dquote_static.c -> dquote.cJarkko Hietaniemi2015-07-222-2/+3
| | | | Instead of #include-ing the C file, compile it normally.
* Bump version to 5.23.2Matthew Horsfall2015-07-202-40/+40
|
* patchlevel: we are now perl v5.23.1Ricardo Signes2015-06-202-40/+40
|
* infnan: move the mantbits definitions from perl.h to ConfigureJarkko Hietaniemi2015-06-121-0/+1
| | | | (this way they will be available via %Config)
* infnan: Configure scan for fp mantissa bytesJarkko Hietaniemi2015-06-121-0/+2
|
* infnan: Configure scan for infnan bytesJarkko Hietaniemi2015-06-121-0/+4
|
* bump version to v5.23.0Ricardo Signes2015-06-012-38/+38
|
* bump version to v5.22.0 with Porting/bump-perl-versionRicardo Signes2015-05-082-46/+46
|