This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Andy Dougherty [Wed, 6 Jun 2012 13:35:31 +0000 (09:35 -0400)]
Avoid Cppsym warnings for extra tokens [perl #113024]
The cppsymbols can include macros such as __INT16_C(c), which can't
best tested with a simple #ifdef. This patch strips off the opening
parenthesis and everything following it. These macros were generated
by cpp -dM.
Andy Dougherty [Wed, 6 Jun 2012 12:58:29 +0000 (08:58 -0400)]
Replace $compile_ok by $compile since it's ok for this probe to fail.
On systems where KERN_PROC_PATHNAME is not available, this probe
is expected to fail, so use $compile to throw away the error message.
Andy Dougherty [Wed, 6 Jun 2012 12:55:12 +0000 (08:55 -0400)]
Replace $compile_ok by $compile since it's ok for this probe to fail.
On systems where _NSGetExecutablePath is not available, this probe
is expected to fail, so use $compile to throw away the error message.
H.Merijn Brand [Sun, 1 Apr 2012 10:00:19 +0000 (12:00 +0200)]
Determine if ELF even if ld is not ''
H.Merijn Brand [Sat, 31 Mar 2012 14:09:38 +0000 (16:09 +0200)]
Add ld_can_script probe
H.Merijn Brand [Thu, 16 Feb 2012 16:18:59 +0000 (17:18 +0100)]
Add new probes for IPv6 (LeoNerd)
H.Merijn Brand [Mon, 13 Feb 2012 15:46:47 +0000 (16:46 +0100)]
Configure now aborts with a diagnostic if it detects a duplicate extension.
Backport of
864293481e6a8b8 +
01db32e2e6d17e
H.Merijn Brand [Sun, 12 Feb 2012 13:39:16 +0000 (14:39 +0100)]
Add probe for strptime
H.Merijn Brand [Fri, 27 Jan 2012 15:10:11 +0000 (16:10 +0100)]
mymalloc isn't threadsafe (rurban)
H.Merijn Brand [Mon, 9 Jan 2012 17:18:18 +0000 (18:18 +0100)]
A is not blank
H.Merijn Brand [Mon, 9 Jan 2012 17:11:16 +0000 (18:11 +0100)]
Add probe for isblank() (requested by khw)
Andy Dougherty [Fri, 9 Dec 2011 02:29:09 +0000 (21:29 -0500)]
Fix spelling error in config_argN, RT [perl #82788].
Andy Dougherty [Fri, 9 Dec 2011 02:28:12 +0000 (21:28 -0500)]
Merge branch 'master' of perl5.git.perl.org:/metaconfig
H.Merijn Brand [Sat, 1 Oct 2011 10:37:08 +0000 (12:37 +0200)]
Improved $^X absolute pathname conversion.
Backport of
6f31bef90fda3b9a8027adfb123055bc0eefc81c
Signed-off-by: H.Merijn Brand <merijn@lx09.procura.nl>
Andy Dougherty [Wed, 21 Sep 2011 16:02:18 +0000 (12:02 -0400)]
Use a real compile to test for stdbool.h.
On some Solaris systems, <stdbool.h> is present, but will give an
error if used by a compiler that is not sufficiently c99-compliant.
Check for this by including <stdbool.h> and trying to compile a
short program that uses bool.
Signed-off-by: H.Merijn Brand <merijn@lx09.procura.nl>
Andy Dougherty [Wed, 21 Sep 2011 16:02:18 +0000 (12:02 -0400)]
Use a real compile to test for stdbool.h.
On some Solaris systems, <stdbool.h> is present, but will give an
error if used by a compiler that is not sufficiently c99-compliant.
Check for this by including <stdbool.h> and trying to compile a
short program that uses bool.
H.Merijn Brand [Fri, 16 Sep 2011 12:23:57 +0000 (14:23 +0200)]
document the steps for uconfig.sh (and more)
H.Merijn Brand [Fri, 16 Sep 2011 11:26:44 +0000 (13:26 +0200)]
Add probe for stdbool.h
Backport from Nicholas'
aec14df292f1ec7cd254f5a5a7fb4827bab2b5cd:
Probe for <stdbool.h>, and if found use it in handy.h
This means that the core uses the compiler's bool type if one exists.
This avoids potential problems of clashes between perl's own implementation
of bool and the compiler's bool type, which otherwise occur when one
attempts to include headers which in turn include <stdbool.h>.
H.Merijn Brand [Thu, 1 Sep 2011 13:54:55 +0000 (15:54 +0200)]
Add 5th QUAD type for win32
Backported from
83ff24d4e9
H.Merijn Brand [Fri, 26 Aug 2011 10:59:41 +0000 (12:59 +0200)]
More mlint/mconfig updates
H.Merijn Brand [Fri, 26 Aug 2011 10:11:20 +0000 (12:11 +0200)]
Revert "Fix Configure's csym test for gcc's link time optimisation"
There are too many related problems arising from this change
This reverts commit
2a57a95b5cdd39b6d6c1f074c5ed9b9908eb7009.
H.Merijn Brand [Fri, 26 Aug 2011 10:04:21 +0000 (12:04 +0200)]
Document the mconfig and mlint scripts
mconfig and mlint are the non-autoloading versions of metaconfig
and metalint that *are* easy to modify. I will use these from now
on!
H.Merijn Brand [Fri, 26 Aug 2011 08:07:57 +0000 (10:07 +0200)]
fix from dist-svn
H.Merijn Brand [Fri, 26 Aug 2011 08:07:27 +0000 (10:07 +0200)]
Remove unwanted whitespace in comments
H.Merijn Brand [Mon, 22 Aug 2011 13:41:46 +0000 (15:41 +0200)]
Fix Configure's csym test for gcc's link time optimisation
This introduces a volatile into the test program so gcc cannot optimise
out the symbol itself as being unused.
H.Merijn Brand [Sun, 31 Jul 2011 18:42:39 +0000 (20:42 +0200)]
Add st_ino size/sign probes
H.Merijn Brand [Fri, 29 Apr 2011 10:37:45 +0000 (12:37 +0200)]
dist-3.0 is dead and gone. Mention actual state of affairs
Now that README shows how to get the actual dist package, there
is no need whatsoever to also have these files in our metaconfig
repository
H.Merijn Brand [Wed, 16 Feb 2011 14:10:16 +0000 (15:10 +0100)]
Chainsaw out the possibility to disable useperlio
H.Merijn Brand [Mon, 14 Feb 2011 21:59:08 +0000 (22:59 +0100)]
Subject: optimize matching -g still enables -DDEBUGING
From: Nicholas Clark <nick@ccl4.org>
Date: Mon, 14 Feb 2011 16:01:49 +0000
Message-ID: <
20110214160149.GU24189@plum.flirble.org>
INSTALL says this:
=item -DEBUGGING=-g
=item -Doptimize=-g
Adds -g to optimize, but does not set -DDEBUGGING.
(Note: Your system may actually require something like cc -g2.
Check your man pages for cc(1) and also any hint file for your system.)
However, we *aren't* compliant with our documentation, as currently
-Doptimize=-g (or anything containing -g) still causes -DDEBUGGING to be
added to the C flags.
H.Merijn Brand [Sun, 23 Jan 2011 09:15:59 +0000 (10:15 +0100)]
From: Benny Siegert <bsiegert@gmail.com>
Date: Thu, 20 Jan 2011 19:27:04 +0100
Subject: [PATCH] MirBSD: fix rpath for shared libperl
If you build perl with a shared libperl.so on MirBSD (the default config),
it will work up to the installation; however, once installed, it will be
unable to find libperl. Treat rpath handling like in the other BSD
dialects.
Signed-off-by: H.Merijn Brand <merijn@tux09.procura.nl>
H.Merijn Brand [Fri, 7 Jan 2011 13:15:45 +0000 (14:15 +0100)]
explicitely => explicitly
Signed-off-by: H.Merijn Brand <merijn@tux09.procura.nl>
H.Merijn Brand [Fri, 7 Jan 2011 12:57:24 +0000 (13:57 +0100)]
[perl #81910] [PATCH] Fix typos (spelling errors) in Porting/*.
From: (Peter J. Acklam) (via RT) <perlbug-followup@perl.org>
Date: Thu, 06 Jan 2011 23:14:14 -0800
Message-ID: <rt-3.6.HEAD-5425-
1294384454-1893.81910-75-0@perl.org>
http://rt.perl.org/rt3/Ticket/Display.html?id=81910
Signed-off-by: H.Merijn Brand <merijn@tux09.procura.nl>
H.Merijn Brand [Fri, 7 Jan 2011 12:14:22 +0000 (13:14 +0100)]
[perl #81774] [PATCH] Fix typos (spelling errors) in configure files.
From: (Peter J. Acklam) (via RT) <perlbug-followup@perl.org>
Date: Thu, 06 Jan 2011 23:05:42 -0800
Message-ID: <rt-3.6.HEAD-5425-
1294383942-1527.81774-75-0@perl.org>
http://rt.perl.org/rt3/Ticket/Display.html?id=81774
Signed-off-by: H.Merijn Brand <merijn@tux09.procura.nl>
H.Merijn Brand [Tue, 21 Dec 2010 13:33:43 +0000 (14:33 +0100)]
No reference to $Id: in generated files
They might have served a purpose in the original files, but Nicholas
and Zefram expressed their concern that in the generated files, these
tags are misleading and unneeded.
H.Merijn Brand [Mon, 20 Dec 2010 16:04:36 +0000 (17:04 +0100)]
Add sin6_scope_id probe (LeoNerd)
H.Merijn Brand [Fri, 10 Dec 2010 11:03:03 +0000 (12:03 +0100)]
Backport
83f8bb564961ee8fba35156e720bef403d8fa9a7
merge XS-APItest-KeywordRPN into XS-APItest
H.Merijn Brand [Fri, 10 Dec 2010 10:57:10 +0000 (11:57 +0100)]
Backport
d9a4b459f94297889956ac3adc42707365f274c2
Restore building Encode's subextensions for a static build.
The special-casing in Configure still referred to ext/Encode, so likely this
was broken when Encode moved to cpan/
H.Merijn Brand [Fri, 10 Dec 2010 10:27:49 +0000 (11:27 +0100)]
Add probe for sa_len availability in sockaddr struct
H.Merijn Brand [Tue, 21 Sep 2010 12:30:23 +0000 (14:30 +0200)]
George Greer [Mon, 19 Jul 2010 02:16:21 +0000 (22:16 -0400)]
Account for GNU "i" extension when checking 'nm' output.
Signed-off-by: H.Merijn Brand <merijn@nb09.procura.nl>
Andy Dougherty [Fri, 9 Jul 2010 18:56:45 +0000 (14:56 -0400)]
Add probe for C99-style static inline.
Since perl's cflags.SH script tries to add in -ansi for gcc, but gcc
will only accept '__inline__', and not 'inline' in -ansi mode, try
__inline__ first if we're using gcc. Also, might as well document the
MSVC versions that will end up getting used in Windows, even if they
never run Configure.
Andy Dougherty [Thu, 8 Jul 2010 16:51:58 +0000 (12:51 -0400)]
First pass at d_static_inline.U. Needs to be revised
to address different flavors: inline, __inline__, and __inline.
H.Merijn Brand [Wed, 23 Jun 2010 14:30:29 +0000 (16:30 +0200)]
[PATCH] Fix d_u32align probe on ARM
From: Marc Pignat <marc@pignat.org>
Date: Wed, 23 Jun 2010 15:38:37 +0200
My proposed solution is to use the 'volatile' keyword to make sure the
compiler will really do the job.
Please note that it does not work with -O3, but the configure script
compile with -O2, so this should be fine.
At this time I've only tested the Configure scripts, which now detects
the align problem on ARM. I'm compiling the whole thing to check if the
md5 bug goes away!
I hope this will fix this *5 years* old bug, and the upstream bug as
well!
Signed-off-by: H.Merijn Brand <merijn@nb09.procura.nl>
H.Merijn Brand [Fri, 21 May 2010 06:01:02 +0000 (08:01 +0200)]
The size of a character in C is per definition 1
H.Merijn Brand [Wed, 14 Apr 2010 14:04:32 +0000 (16:04 +0200)]
H.Merijn Brand [Mon, 29 Mar 2010 07:13:13 +0000 (09:13 +0200)]
Add probes for prctl () and prctl (PR_SET_NAME, ...)
H.Merijn Brand [Sat, 13 Feb 2010 18:05:29 +0000 (19:05 +0100)]
[PATCH] Support for SystemTap's dtrace compatibility layer and issues linking miniperl
H.Merijn Brand [Tue, 9 Feb 2010 15:43:40 +0000 (16:43 +0100)]
H.Merijn Brand [Mon, 1 Feb 2010 11:57:47 +0000 (12:57 +0100)]
[PATCH] Add gcc predefined macros to $Config{cppsymbols} on GNU/Hurd.
This is needed at least by h2ph, otherwise the generated .ph files
choke on missing __LONG_MAX__ and similar definitions.
Patch by Samuel Thibault <sthibault@debian.org>.
H.Merijn Brand [Tue, 5 Jan 2010 08:33:53 +0000 (09:33 +0100)]
H.Merijn Brand [Tue, 5 Jan 2010 08:14:16 +0000 (09:14 +0100)]
FD 4 is not (yet) open in Head
Andy Dougherty [Tue, 8 Dec 2009 19:32:52 +0000 (14:32 -0500)]
Document config_args limitations reported in [perl #70912]
H.Merijn Brand [Fri, 6 Nov 2009 20:21:54 +0000 (21:21 +0100)]
backport
4471067f9aaa4b26f882988887ab76cb145e0a5f:
Addded a pointer to the documentation on how Configure is maintained
H.Merijn Brand [Thu, 5 Nov 2009 21:34:45 +0000 (22:34 +0100)]
Check for the size of characters in bits
H.Merijn Brand [Thu, 5 Nov 2009 20:20:34 +0000 (21:20 +0100)]
H.Merijn Brand [Thu, 5 Nov 2009 14:32:11 +0000 (15:32 +0100)]
Mention git repo in Configure's header
H.Merijn Brand [Tue, 3 Nov 2009 21:23:20 +0000 (22:23 +0100)]
From
66387e83db8e74f73611c9a4b74872eb8fd77f97 Mon Sep 17 00:00:00 2001
From: Daniel Mierswa <impulze@impulze.org>
Date: Tue, 3 Nov 2009 20:09:58 +0100
Subject: [PATCH] Use supplied C preprocessor instead of hardcoded cpp.
Signed-off-by: Daniel Mierswa <impulze@impulze.org>
H.Merijn Brand [Mon, 19 Oct 2009 14:22:43 +0000 (16:22 +0200)]
Consistent use of HP-UX
H.Merijn Brand [Sun, 27 Sep 2009 08:32:06 +0000 (10:32 +0200)]
Backport
a193a2dbe32848820392de0a7fd340ca82c2efd9
Support building extensions in dist/ as well as cpan/ and ext/
H.Merijn Brand [Fri, 25 Sep 2009 11:32:30 +0000 (13:32 +0200)]
Backport of
a32b3e139d3c4089c63b2af5abf995d1c2dec954
Explicitly sort the extensions, now that they come from multiple directories.
We used to have extensions automatically sorted because they came from a
single glob, that was itself sorted.
H.Merijn Brand [Thu, 24 Sep 2009 10:26:00 +0000 (12:26 +0200)]
Backport of
dd6c21bebf897e04754ff0d50210c6e54cc753c7
Search for extensions in cpan/ as well as ext/
This required inverting the logic of test for "are we flattened or not".
Currently we can only build XS extensions on Unix from cpan/
H.Merijn Brand [Tue, 18 Aug 2009 17:37:47 +0000 (19:37 +0200)]
Correctly detect NDBM_File availability
H.Merijn Brand [Fri, 14 Aug 2009 06:03:32 +0000 (08:03 +0200)]
Install arch-dependent files into $archlib.
backport
8a240526d678f296ecb86c2b6b7a7bf0cfbaa7e9
H.Merijn Brand [Wed, 12 Aug 2009 07:32:23 +0000 (09:32 +0200)]
Remove duplicate entry (from config_heavy.pl)
H.Merijn Brand [Wed, 12 Aug 2009 07:31:34 +0000 (09:31 +0200)]
H.Merijn Brand [Thu, 2 Jul 2009 11:34:05 +0000 (13:34 +0200)]
H.Merijn Brand [Mon, 29 Jun 2009 22:50:46 +0000 (00:50 +0200)]
Subject: Re: dual-life: IO 1.25 and Scalar-List-Utils-1.21
From: Andy Dougherty <doughera@lafayette.edu>
Date: Mon, 29 Jun 2009 15:11:30 -0400 (EDT)
Message-ID: <alpine.DEB.2.00.
0906291510110.28368@fractal.phys.lafayette.edu>
H.Merijn Brand [Thu, 18 Jun 2009 19:40:31 +0000 (21:40 +0200)]
Silence metalint
H.Merijn Brand [Thu, 18 Jun 2009 14:35:44 +0000 (16:35 +0200)]
Subject: [PATCH] Add gcc predefined macros to $Config{cppsymbols} on GNU/kFreeBSD.
From: Niko Tyni <ntyni@debian.org>
Date: Mon, 15 Jun 2009 12:00:41 +0300
Message-Id: <
1245056441-6481-1-git-send-email-ntyni@debian.org>
H.Merijn Brand [Thu, 4 Jun 2009 07:35:18 +0000 (09:35 +0200)]
remember if binaries are ELF format
H.Merijn Brand [Tue, 26 May 2009 16:45:57 +0000 (18:45 +0200)]
Update README (perforce => git)
H.Merijn Brand [Wed, 6 May 2009 12:00:39 +0000 (14:00 +0200)]
-Duserelocatableinc and -Duseshrplib don't work together
H.Merijn Brand [Wed, 25 Mar 2009 16:31:28 +0000 (17:31 +0100)]
Detection of IPv6 clueful functions by Configure
From: Steve Peters <steve@fisharerojo.org>
Date: Wed, 25 Mar 2009 10:54:51 -0500
Message-ID: <fd7a59d30903250854q53311f48o6744df7cbfa1d03d@mail.gmail.com>
H.Merijn Brand [Tue, 10 Feb 2009 16:33:21 +0000 (17:33 +0100)]
Comment breaks functionality
H.Merijn Brand [Tue, 10 Feb 2009 14:55:12 +0000 (15:55 +0100)]
Backports and portability rollbacks
1f8a0b38638b171cf789a9f44cc9e8cd38bbf4d3:
All extensions are at the top level, so no longer any need to recurse.
abd7186c6748d276ced6dd10e94e6c04ba10b768:
Remove special casing for extensions nested inside other extensions.
(Incorporates "[PATCH] Don't include Hash::Utils::FieldHash twice" from
Jerry Hedden.)
238a6851e196b122761952f8b2127d8fe9e01658:
Cope with new-style ext/Data-Dumper as well as old-style ext/Data/Dumper
aefe3e7eb5caf2308d0c098e045a537a24dc42b6:
Exclude VMS extensions on non-VMS.
H.Merijn Brand [Mon, 19 Jan 2009 15:47:18 +0000 (16:47 +0100)]
formatting nit
H.Merijn Brand [Mon, 19 Jan 2009 15:44:59 +0000 (16:44 +0100)]
SetUID scripts are deprecated for 5.12
H.Merijn Brand [Thu, 25 Dec 2008 11:59:41 +0000 (12:59 +0100)]
Make PERL_PATCHLEVEL a single value quoted string
H.Merijn Brand [Wed, 3 Dec 2008 14:19:27 +0000 (15:19 +0100)]
Subject: [PATCH] Configure detection of __attribute__((deprecated))
From: "Rafael Garcia-Suarez" <rgarciasuarez@gmail.com>
Date: Wed, 3 Dec 2008 12:51:36 +0100
Message-ID: <b77c1dce0812030351j33d7b75ci3e2640b33f36acd9@mail.gmail.com>
H.Merijn Brand [Wed, 3 Dec 2008 12:17:55 +0000 (13:17 +0100)]
Subject: Re: [perl #60738] Something missing in Config(3perl)
From: Andy Dougherty <doughera@lafayette.edu>
Date: Mon, 24 Nov 2008 11:22:43 -0500 (EST)
Message-ID: <Pine.LNX.4.64.
0811241110180.5080@fractal.phys.lafayette.edu>
H.Merijn Brand [Fri, 28 Nov 2008 07:33:23 +0000 (08:33 +0100)]
Subject: could we add usedevel to config.h?
From: Nicholas Clark <nick@ccl4.org>
Date: Thu, 27 Nov 2008 20:28:08 +0000
Message-ID: <
20081127202807.GG49335@plum.flirble.org>
H.Merijn Brand [Wed, 12 Nov 2008 13:04:12 +0000 (14:04 +0100)]
Subject: Avoid duplicate vendorlib [PATCH]
From: Gisle Aas <gisle@activestate.com>
Date: Wed, 12 Nov 2008 13:50:34 +0100
Message-Id: <
71B06786-4C55-4A76-BE24-
C01F89015D45@activestate.com>
H.Merijn Brand [Thu, 6 Nov 2008 20:13:05 +0000 (21:13 +0100)]
Subject: [PATCH: Configure/NDBM_File] Add prototype detection for NDBM header files
From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Mon, 3 Nov 2008 22:40:11 +0100
Message-ID: <
20081103224011.
26c223b3@r2d2>
H.Merijn Brand [Wed, 29 Oct 2008 08:07:32 +0000 (09:07 +0100)]
Subject: [PATCH] Haiku Port
From: Ingo Weinhold <ingo_weinhold@gmx.de>
Date: Wed, 29 Oct 2008 02:25:44 +0100
Message-Id: <
20081029022544.413.1@knochen-vm.localdomain>
H.Merijn Brand [Tue, 28 Oct 2008 17:50:50 +0000 (18:50 +0100)]
Subject: fix for failed Gconvert detection under C++
From: Tony Cook <tony@develop-help.com>
Date: Tue, 28 Oct 2008 22:24:05 +1100
Message-ID: <
20081028112405.GA14163@mars.tony.develop-help.com>
H.Merijn Brand [Mon, 27 Oct 2008 18:34:20 +0000 (19:34 +0100)]
Subject: [PATCH: Configure] Fix prototype detection for C++
From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Sun, 26 Oct 2008 21:41:13 +0100
Message-ID: <
20081026214113.
0a5dc1a3@r2d2>
H.Merijn Brand [Mon, 27 Oct 2008 17:55:14 +0000 (18:55 +0100)]
Subject: [PATCH: Configure] Fix prototype detection for C++
From: Marcus Holland-Moritz <mhx-perl@gmx.net>
Date: Sun, 26 Oct 2008 21:41:13 +0100
Message-ID: <
20081026214113.
0a5dc1a3@r2d2>
H.Merijn Brand [Sat, 18 Oct 2008 15:13:17 +0000 (17:13 +0200)]
indent fix
H.Merijn Brand [Sat, 18 Oct 2008 10:01:33 +0000 (12:01 +0200)]
Guard against time and year overflows
H.Merijn Brand [Fri, 17 Oct 2008 06:42:16 +0000 (08:42 +0200)]
dist is a symlink to ../lib/dist
H.Merijn Brand [Fri, 3 Oct 2008 15:48:47 +0000 (17:48 +0200)]
Check for existence of 64bit time functions
Should be available on AIX 5.3 and higher
H.Merijn Brand [Mon, 29 Sep 2008 16:54:38 +0000 (18:54 +0200)]
A builtin hard upper bound for sLOCALTIME_max to prevent AIX from stalling in the tests
H.Merijn Brand [Mon, 29 Sep 2008 16:14:06 +0000 (18:14 +0200)]
Allow s{GM,LOCAL)TIME_{min,max} to be set from CLI, Policy.sh and hints
H.Merijn Brand [Mon, 29 Sep 2008 15:48:45 +0000 (17:48 +0200)]
metaconfig is now a symlink on my development env
H.Merijn Brand [Thu, 18 Sep 2008 12:44:25 +0000 (14:44 +0200)]
And all is clean!
H.Merijn Brand [Thu, 18 Sep 2008 12:44:08 +0000 (14:44 +0200)]
Problably no need anymore to put metaunits on CPAN now that we have a public git repo
but this is what I use(d) to make the metaunits public
H.Merijn Brand [Thu, 18 Sep 2008 12:42:53 +0000 (14:42 +0200)]
mksample adopted to my situation
A new maintainer might want to change it again
H.Merijn Brand [Thu, 18 Sep 2008 12:42:00 +0000 (14:42 +0200)]
A few missing files that never made it to perforce
H.Merijn Brand [Thu, 18 Sep 2008 12:41:18 +0000 (14:41 +0200)]
Local helper utilities
H.Merijn Brand [Thu, 18 Sep 2008 12:39:03 +0000 (14:39 +0200)]
U.check was never added to perforce. I never used it
This is just housekeeping