This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[UTIL] Perl system does not default to $_
[metaconfig.git] / dist / U / d_tzname.U
1 ?RCS: $Id: d_tzname.U 1 2006-08-24 12:32:52Z rmanfredi $
2 ?RCS:
3 ?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
4 ?RCS: 
5 ?RCS: You may redistribute only under the terms of the Artistic Licence,
6 ?RCS: as specified in the README file that comes with the distribution.
7 ?RCS: You may reuse parts of this distribution only within the terms of
8 ?RCS: that same Artistic Licence; a copy of which may be found at the root
9 ?RCS: of the source tree for dist 4.0.
10 ?RCS:
11 ?RCS: $Log: d_tzname.U,v $
12 ?RCS: Revision 3.0.1.2  1994/08/29  16:14:43  ram
13 ?RCS: patch32: forgot to set proper value in the val variable
14 ?RCS:
15 ?RCS: Revision 3.0.1.1  1994/06/20  06:57:55  ram
16 ?RCS: patch30: created
17 ?RCS:
18 ?MAKE:d_tzname: Csym Setvar
19 ?MAKE:  -pick add $@ %<
20 ?S:d_tzname:
21 ?S:     This variable conditionally defines HAS_TZNAME if tzname[] is
22 ?S:     available to access timezone names.
23 ?S:.
24 ?C:HAS_TZNAME:
25 ?C:     This symbol, if defined, indicates that the tzname[] array is
26 ?C:     available to access timezone names.
27 ?C:.
28 ?H:#$d_tzname HAS_TZNAME                /**/
29 ?H:.
30 ?LINT:set d_tzname
31 : see if tzname[] exists
32 echo " "
33 if set tzname val -a d_tzname; eval $csym; $val; then
34         val="$define"
35         echo 'tzname[] found.' >&4
36 else
37         val="$undef"
38         echo 'tzname[] NOT found.' >&4
39 fi
40 set d_tzname
41 eval $setvar
42