| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
List/Util.xsc as (ListUtil.c and) ListUtil.o since
POSIX-BC (BS2000) linker has an evil limitation of
being unable to include in the same executable several
object files with the same name - case-insensitively -
because otherwise we conflict with util.c.
Strictly speaking currently required only in POSIX-BC
but probably will do no harm elsewhere where static
linking is required.
p4raw-id: //depot/perl@10453
|
|
|
|
|
|
| |
probe to cast, not whine; test for %Ld and %Lf before %lld and
%llf because the L is the ANSI way.
p4raw-id: //depot/perl@10434
|
|
|
| |
p4raw-id: //depot/perl@10431
|
|
|
| |
p4raw-id: //depot/perl@10429
|
|
|
| |
p4raw-id: //depot/perl@10428
|
|
|
| |
p4raw-id: //depot/perl@10427
|
|
|
| |
p4raw-id: //depot/perl@10426
|
|
|
|
|
| |
Message-Id: <200106041327.OAA15338@tempest.npl.co.uk>
p4raw-id: //depot/perl@10425
|
|
|
| |
p4raw-id: //depot/perl@10418
|
|
|
|
|
|
|
|
|
|
| |
picked up by gcc -Wall (in Tru64 where pointers are 64 bits
wide but I32 (int) only 32 bits wide).
WARNING: the classnum and tagnum changes in Storable.xs
may not be wise, they may be breaking binary compatibility
(in 64-bit platforms), asked Raphael Manfredi about the changes.
p4raw-id: //depot/perl@10417
|
|
|
| |
p4raw-id: //depot/perl@10392
|
|
|
|
|
| |
Message-ID: <Pine.OSF.4.10.10106011545140.323662-100000@aspara.forte.com>
p4raw-id: //depot/perl@10384
|
|
|
| |
p4raw-id: //depot/perl@10374
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.33.0105311610110.9337-100000@lapaki.jach.hawaii.edu>
p4raw-id: //depot/perl@10370
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0105311733270.732-100000@mako.covalent.net>
p4raw-id: //depot/perl@10369
|
|
|
|
|
| |
Message-ID: <20010531082755.A10018@lustre.linux.in>
p4raw-id: //depot/perl@10352
|
|
|
| |
p4raw-id: //depot/perl@10338
|
|
|
| |
p4raw-id: //depot/perl@10335
|
|
|
|
|
| |
is now wrong.
p4raw-id: //depot/perl@10326
|
|
|
|
|
| |
and Abhijit Menon-Sen.
p4raw-id: //depot/perl@10321
|
|
|
| |
p4raw-id: //depot/perl@10320
|
|
|
|
|
| |
Message-Id: <20010530152117.7097.H.M.BRAND@hccnet.nl>
p4raw-id: //depot/perl@10317
|
|
|
|
|
| |
is needed (there's something funny with gcc on AIX).
p4raw-id: //depot/perl@10311
|
|
|
| |
p4raw-id: //depot/perl@10302
|
|
|
|
|
| |
Message-Id: <20010529175841.7078.H.M.BRAND@hccnet.nl>
p4raw-id: //depot/perl@10296
|
|
|
|
|
| |
Message-Id: <20010529115151.9FE0.H.M.BRAND@hccnet.nl>
p4raw-id: //depot/perl@10295
|
|
|
| |
p4raw-id: //depot/perl@10239
|
|
|
| |
p4raw-id: //depot/perl@10238
|
|
|
| |
p4raw-id: //depot/perl@10201
|
|
|
| |
p4raw-id: //depot/perl@10122
|
|
|
|
|
| |
from Takis Psarogiannakopoulos.
p4raw-id: //depot/perl@10121
|
|
|
|
|
| |
Message-ID: <20010515190935.A27268@penderel>
p4raw-id: //depot/perl@10120
|
|
|
|
|
| |
than truncating, would have saved at least my confusion.
p4raw-id: //depot/perl@10119
|
|
|
| |
p4raw-id: //depot/perl@10112
|
|
|
|
|
| |
Message-ID: <20010514221643.A22437@penderel>
p4raw-id: //depot/perl@10109
|
|
|
|
|
| |
Message-ID: <20010514220344.A20643@penderel>
p4raw-id: //depot/perl@10108
|
|
|
|
|
| |
Message-ID: <20010514221007.A21118@penderel>
p4raw-id: //depot/perl@10107
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the 'physical vs logical' range scheme:
\xAA-\xCC is a native physical range, you want that range of
codepoints in your native encoding. In EBCDIC the codepoints
in the gaps (between i-j and r-s) should be included.
\x{AA}-\x{CC} is a physical Unicode range, you want that range of
codepoints in Unicode.
a-z is a logical range, you want that range of 'logical' codepoints
in your native encoding. In EBCDIC the codepoints in the gaps
(between i-j and r-s) should not be included.
Mixed cases (a-\xAA, etc) should either be errors, or maybe
the 'logical' endpoints should be converted to native/Unicode
codepoints, and the range handled as a physical range.
'Logical endpoints' are to be recognized only in the A-Z, a-z,
and 0-9 ranges. Probably a warning should be given for mixed
cases like A-z or a-9 (since such expressions are encoding
dependent), with a recommendation to use physical ranges.
p4raw-id: //depot/perl@10085
|
|
|
|
|
| |
Message-ID: <20010511120222.A11529@penderel>
p4raw-id: //depot/perl@10080
|
|
|
| |
p4raw-id: //depot/perl@10079
|
|
|
|
|
| |
Message-ID: <20010510185459.A5995@penderel>
p4raw-id: //depot/perl@10075
|
|
|
|
|
| |
Message-ID: <20010510125639.A2119@penderel>
p4raw-id: //depot/perl@10074
|
|
|
| |
p4raw-id: //depot/perl@10073
|
|
|
|
|
|
| |
Subject: Re: [PATCH t/TEST] B::Deparse tester
Message-Id: <200105100448.FAA13584@crypt.compulink.co.uk>
p4raw-id: //depot/perl@10070
|
|
|
|
|
| |
Message-ID: <20010510135008.A2454@penderel>
p4raw-id: //depot/perl@10068
|
|
|
|
|
| |
Message-ID: <20010510021034.A19421@penderel>
p4raw-id: //depot/perl@10066
|
|
|
|
|
| |
Message-ID: <20010510010208.A18200@penderel>
p4raw-id: //depot/perl@10063
|
|
|
|
|
| |
Message-ID: <20010509191750.A16940@penderel>
p4raw-id: //depot/perl@10059
|
|
|
|
|
| |
Message-ID: <Pine.LNX.4.21.0105081654140.1212-100000@marmot.rim.canoe.ca>
p4raw-id: //depot/perl@10053
|