summaryrefslogtreecommitdiff
path: root/Porting
Commit message (Collapse)AuthorAgeFilesLines
* Silence the remaing format warningRobin Barker2001-09-071-7/+25
| | | | | Message-Id: <200109071728.SAA13569@tempest.npl.co.uk> p4raw-id: //depot/perl@11941
* remove deprecated PERL_OBJECT cruft, it has long since stoppedGurusamy Sarathy2001-08-311-1/+0
| | | | | working in 5.7.x p4raw-id: //depot/perl@11803
* Changes USE_THREADS to USE_5005THREADS in the entire source.Artur Bergman2001-08-272-2/+2
| | | | | | Thanks to H. Merijn Brand for the patch. Some of the comments and or guards might be removable in perl.h now. p4raw-id: //depot/perl@11758
* When applying patch via Porting/apply fails, do p4 refreshNick Ing-Simmons2001-08-241-1/+1
| | | | | to get old files back. p4raw-id: //depot/perl@11741
* Mail -> change script (pre-alpha)Nick Ing-Simmons2001-08-171-0/+71
| | | p4raw-id: //depot/perl@11704
* More DOSish files.Jarkko Hietaniemi2001-08-141-0/+3
| | | p4raw-id: //depot/perl@11666
* Add some files to DOSish and writables.Jarkko Hietaniemi2001-08-141-1/+6
| | | p4raw-id: //depot/perl@11664
* Decommission Time::Piece; unnecessary Yet Another Time-Date Module.Jarkko Hietaniemi2001-08-101-8/+8
| | | p4raw-id: //depot/perl@11631
* Introduce more floating point classifying APIs;Jarkko Hietaniemi2001-08-093-8/+198
| | | | | | | | | | | | | try to define (most importantly) Perl_is{inf,nan}(x). For this first cut, assume none such APIs exist in non-UNIXoid platforms-- this is of course too unkind: Win32 rumoredly has _fpclass() and _isnan(), and VMS/VOS very probably have some of the APIs available. The only thing Perl uses at the moment is Perl_isnan() (has been in use for a while now). NOTE: the Win32 and NetWare config_h.?c need regenerating. p4raw-id: //depot/perl@11618
* Regen Porting stuff.Jarkko Hietaniemi2001-07-313-58/+59
| | | p4raw-id: //depot/perl@11519
* More +x.Jarkko Hietaniemi2001-07-251-2/+4
| | | p4raw-id: //depot/perl@11468
* Doc tweakery from Abhijit.Jarkko Hietaniemi2001-07-231-9/+6
| | | p4raw-id: //depot/perl@11447
* Re: Typo in Porting/pumpkin/pod ?Mike Guy2001-07-221-1/+1
| | | | | Message-Id: <E15NbxR-0006HD-00@draco.cus.cam.ac.uk> p4raw-id: //depot/perl@11443
* Bump the version to 5.7.2.Jarkko Hietaniemi2001-07-132-30/+30
| | | p4raw-id: //depot/perl@11354
* Re: [randy@qualcomm.com: Corrections for ' repository - Using the Perl ↵Randall Gellens2001-07-121-16/+44
| | | | | | | repository '] Message-Id: <p05100301b773e9751c04@[129.46.176.61]> p4raw-id: //depot/perl@11338
* Add HAS_PTHREAD_ATFORK.Jarkko Hietaniemi2001-07-123-6/+18
| | | p4raw-id: //depot/perl@11334
* Regen Configure, modlib, toc.Jarkko Hietaniemi2001-07-123-11/+21
| | | p4raw-id: //depot/perl@11320
* More Perforce lore.Jarkko Hietaniemi2001-06-281-10/+65
| | | p4raw-id: //depot/perl@11005
* Add Configure probes for nl_langinfo() and <langinfo.h>.Jarkko Hietaniemi2001-06-283-11/+35
| | | | | | Expected not to exist in non-UNIX excepting in VMS, where according to a quick web survey they just might. p4raw-id: //depot/perl@11003
* "lose the it's", from Abhijit Menon-Sen.Jarkko Hietaniemi2001-06-272-2/+2
| | | | | ("It's" not searched, pods not searched.) p4raw-id: //depot/perl@10980
* Further tiny bcopy cleanupAndy Dougherty2001-06-223-12/+14
| | | | | Message-ID: <Pine.SOL.4.10.10106221417030.28044-100000@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@10831
* Add fchdir() probe (in non-UNIX systems assume it doesn't exist).Jarkko Hietaniemi2001-06-213-5/+16
| | | p4raw-id: //depot/perl@10797
* After some reading I don't think we can blindlyJarkko Hietaniemi2001-06-203-21/+10
| | | | | | | | | use systems' realpath(). Too many security problems, too many buggy implementations. TODO: the realpath() emulation code in util.c doesn't seem fully operational? (readlink(), for example?) p4raw-id: //depot/perl@10744
* The first steps towards cross-compilation.Jarkko Hietaniemi2001-06-153-54/+91
| | | | | | | | | | | | | | | | | | | | | | Abstract execution of compiled test executables with $run, and abstract transfer of files with $to and $from. Under cross-compilation the $run, $to, and $from will point to appropriate wrapper scripts, by default ssh and scp, but also rsh, rcp, and cp are supported. If not cross-compiling, they will be set to '', ':', and ':', respectively. With these patches I was able to get Configure for iPAQ ARM Linux on an Intel Linux about 95% right (only a few tests failed to execute or they produced incorrect results), and I was able to compile a functional miniperl. The symbol crosscompile renamed to be usecrosscompile, the corresponding C symbol from CROSSCOMPILE to USE_CROSS_COMPILE. p4raw-id: //depot/perl@10592
* Add Configure directive -Dusereentrant for Artur's ithreads work,Jarkko Hietaniemi2001-06-133-5/+13
| | | | | extremely experimental, not even prompted for. p4raw-id: //depot/perl@10569
* Be inspired more by Hugo-- introduce HAS_MODFL_POW32_BUG.Jarkko Hietaniemi2001-06-083-5/+21
| | | p4raw-id: //depot/perl@10479
* Regen Glossary et alia.Jarkko Hietaniemi2001-06-083-7/+83
| | | p4raw-id: //depot/perl@10475
* Missed HAS_SETRESGID_PROTO. No serious harm done sinceJarkko Hietaniemi2001-06-043-5/+37
| | | | | often this prototype goes with HAS_SETRESUID_PROTO. p4raw-id: //depot/perl@10420
* Configure tweaks; record the Berkeley DB version,Jarkko Hietaniemi2001-06-013-5/+48
| | | | | | | | | probe for realpath(), for setresuid() and setresgid() prototypes; use realpath() (try to be paranoid enough), use the setres[ug]id prototypes because glibc has the functions but not their prototypes; add -Wall -ansi to gcc ccflags; regen toc. p4raw-id: //depot/perl@10372
* Introduce $Config{afsroot}.Jarkko Hietaniemi2001-05-303-3/+20
| | | p4raw-id: //depot/perl@10325
* Regen Porting stuff.Jarkko Hietaniemi2001-05-163-11/+13
| | | p4raw-id: //depot/perl@10127
* Porting/patching.pod: update version number formatPhilip Newton2001-04-251-9/+9
| | | | | Message-ID: <3AE703F6.3234.1833C45@localhost> p4raw-id: //depot/perl@9836
* Move the strftime() wrapper from POSIX.xs to util.cJarkko Hietaniemi2001-04-193-6/+17
| | | | | as my_strftime(), requires HAS_STRFTIME. p4raw-id: //depot/perl@9746
* Do not just blindly add CR.Jarkko Hietaniemi2001-04-141-1/+1
| | | p4raw-id: //depot/perl@9700
* Add a script for doing cumulative profile of the test suite.Jarkko Hietaniemi2001-04-101-0/+80
| | | | | (Requires ATOM, that is, Tru64.) p4raw-id: //depot/perl@9672
* Bump patchlevel to 5.7.1.Jarkko Hietaniemi2001-04-072-33/+33
| | | p4raw-id: //depot/perl@9619
* Introduce d_u32align / U32_REQUIRES_ALIGNMENT, needed forJarkko Hietaniemi2001-04-053-6/+128
| | | | | | | | ext/Digest/MD5/Makefile.PL and t/lib/md5-align.t. Introduce probes for struct msghdr, struct cmsghdr, sendmsg, recvmsg, readv, writev, setitimer, getitimer, ualarm, usleep, for possible later extension work. p4raw-id: //depot/perl@9560
* Add sockatmark() probing.Jarkko Hietaniemi2001-03-273-7/+23
| | | p4raw-id: //depot/perl@9371
* Regen files for mainline.Jarkko Hietaniemi2001-03-033-13/+24
| | | p4raw-id: //depot/perl@8996
* Document makepatch in Porting/patchingAndreas König2001-02-111-6/+26
| | | | | Message-ID: <m3bss9kysr.fsf@ak-71.mind.de> p4raw-id: //depot/perl@8767
* Integrate changes #8641,8644,8649,8654,8662,8663,8664,8665,8667,8669Jarkko Hietaniemi2001-02-011-8/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from maintperl. Upgrade to Getopt::Long 2.25, from Johan Vromans. more files need to be writable in the source distribution perl_clone() wants to clone PL_numeric_radix_sv (fix for change#8626) Solaris 2.7 i386 #defines SP in /usr/include/sys/reg.h Subject: Re: [PATCH perl5.6.1-TRIAL2] long C<=item>s in perlmodlib.pod Allow the float to be fuzzier. need to use INT2PTR instead of a straight cast or ia64 fails Subject: Re: [ID 20010201.006] bad pointer from perlfunc to perlmod add ppaddr as one of the compatibility symbols under -DPERL_POLLUTE p4raw-link: @8662 on //depot/maint-5.6/perl: 4fd7b88664e5220d434e86a4171b6501199a0df5 p4raw-link: @8654 on //depot/maint-5.6/perl: 570327f99599d50e7689d7f8e58ce0062abb9bfd p4raw-link: @8649 on //depot/maint-5.6/perl: e077e268546d6372b301e6674cc72c8d19727a93 p4raw-link: @8644 on //depot/maint-5.6/perl: 0a4931cb101d4c4c7af706ed2960bc1b4935992e p4raw-link: @8641 on //depot/maint-5.6/perl: c266a57ee93b609f48ccb9173c2a3073a28cd0db p4raw-link: @8626 on //depot/maint-5.6/perl: e77a7f40d76565c12d43428402884505d5496c8f p4raw-id: //depot/perl@8670 p4raw-integrated: from //depot/maint-5.6/perl@8650 'copy in' Porting/makerel (@7298..) lib/Getopt/Long.pm (@7895..) pod/perlmodlib.PL (@8175..) 'ignore' pod/perlmodlib.pod (@8640..) 'merge in' t/lib/peek.t (@8151..) ext/POSIX/POSIX.xs (@8177..) embed.pl pp.h (@8620..) embedvar.h (@8626..) pod/perlfunc.pod (@8630..) p4raw-integrated: from //depot/maint-5.6/perl@8649 'merge in' sv.c (@8634..)
* Forgotten from #8501.Jarkko Hietaniemi2001-01-233-5/+5
| | | p4raw-id: //depot/perl@8533
* Define SIG_SIZE, the number of elements in the sig_name andJarkko Hietaniemi2001-01-173-3/+13
| | | | | sig_num arrays, including the final NULL entry. p4raw-id: //depot/perl@8459
* Revert #8437 and #8438, the Linux large files story is more complex.Jarkko Hietaniemi2001-01-153-14/+3
| | | p4raw-id: //depot/perl@8440
* (Reverted by #8440)Jarkko Hietaniemi2001-01-143-3/+14
| | | | | | Add <features.h> probing, seems to be needed for (some?) Linux largefileness. p4raw-id: //depot/perl@8437
* Use UVXf.Jarkko Hietaniemi2001-01-122-3/+8
| | | p4raw-id: //depot/perl@8426
* Add sigprocmask() probe, regen Configure, regen toc.Jarkko Hietaniemi2001-01-123-10/+23
| | | p4raw-id: //depot/perl@8421
* Rename testsyml to issymlink.Jarkko Hietaniemi2000-12-213-3/+9
| | | p4raw-id: //depot/perl@8221
* Regen Configure, nitfix uconfig.sh (d_vendorarch is needed).Jarkko Hietaniemi2000-12-192-78/+78
| | | p4raw-id: //depot/perl@8198
* Return of the IVUV-preservation, now seems to be happy evenJarkko Hietaniemi2000-12-152-5/+5
| | | | | | in Digital UNIX (the broken strtoul brokenness detection seems to have been the fly in the ointment). p4raw-id: //depot/perl@8138