diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-04-02 22:08:23 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-04-02 22:08:23 (GMT) |
commit | 68556658dbb72d887d4bf29fb9d9f779c9f99806 (patch) | |
tree | e80226e35f40763dac621521dd174b5292759ca9 /bin/checkposix | |
parent | 8005e831a03dcceec4b3333b5c5483a4cea3707c (diff) | |
download | hdf5-68556658dbb72d887d4bf29fb9d9f779c9f99806.zip hdf5-68556658dbb72d887d4bf29fb9d9f779c9f99806.tar.gz hdf5-68556658dbb72d887d4bf29fb9d9f779c9f99806.tar.bz2 |
[svn-r5132] Purpose:
Autotools Update
Description:
I've updated autoconf, automake, and libtool to the latest/greatest
versions; 2.53, 1.6, and 1.4.2 resp.
Many changes come with the new versions:
- ltconfig is no longer used
- acconfig.h is no longer used (#define values are declared with
the macro)
- regeneration of all of the aclocal.m4, configure, and
H5config.h.in files.
- new config.{guess,sub} files
- new ltmain.sh file
Platforms tested:
AIX (blue), and Linux
Diffstat (limited to 'bin/checkposix')
-rwxr-xr-x | bin/checkposix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/checkposix b/bin/checkposix index b01d323..3dbfda5 100755 --- a/bin/checkposix +++ b/bin/checkposix @@ -55,11 +55,18 @@ while (<>) { next if $name =~ /^FUNC_(ENTER|LEAVE)(_INIT)?$/; next if $name =~ /^U?INT(8|16|32|64)(ENCODE|DECODE)$/; next if $name =~ /^(MIN3?|MAX3?|NELMTS|BOUND|CONSTR)$/; + next if $name =~ /^IS_H5FD_MPIO$/; next if $name =~ /^addr_defined$/; # These functions/macros are exempt. next if $name =~ /^(assert|main|[fs]?printf|va_(start|arg|end))$/; + # These are MPI function calls. Ignore them. + next if $name =~ /^MPI_/; + + # These are POSIX threads function calls. Ignore them. + next if $name =~ /^pthread_/; + print "$ARGV:$.: $name\n"; } |