summaryrefslogtreecommitdiffstats
path: root/Source/cmEndWhileCommand.h
diff options
context:
space:
mode:
authorRuslan Baratov <ruslan_baratov@yahoo.com>2014-09-13 15:09:59 (GMT)
committerBrad King <brad.king@kitware.com>2014-09-15 13:08:33 (GMT)
commit30a94eecdb5c580d83a224848b78d186643e8105 (patch)
treed20c9e8a536d1bc5afbed42e1ec7706534617f9b /Source/cmEndWhileCommand.h
parent2770b19f4c444c1b7506dc45e7629b112164617d (diff)
downloadCMake-30a94eecdb5c580d83a224848b78d186643e8105.zip
CMake-30a94eecdb5c580d83a224848b78d186643e8105.tar.gz
CMake-30a94eecdb5c580d83a224848b78d186643e8105.tar.bz2
ExternalProject: Fix download retry logic
Do not check file's hash in download script. If hash will not match command ``file(DOWNLOAD ...)`` will fail with FATAL_ERROR, ``cmake -P`` will exit with unsuccessful code, and the build will stop. Leave hash checking to the existing implementation in the verify step.
Diffstat (limited to 'Source/cmEndWhileCommand.h')
0 files changed, 0 insertions, 0 deletions
rm class='right' method='get' action='/oss-git/hdf5.git/log/src/H5FDstdio.h'>
path: root/src/H5FDstdio.h
blob: 5c18a4ff87e6d1f4b9892010524799d11ba6de2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html.  If you do not have     *
 * access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/*
 * Programmer:  Robb Matzke <matzke@llnl.gov>
 *              Monday, August  2, 1999
 *
 * Purpose:	The public header file for the sec2 driver.
 */
#ifndef H5FDstdio_H
#define H5FDstdio_H

#include "H5Ipublic.h"

#define H5FD_STDIO	(H5FD_stdio_init())

#ifdef __cplusplus
extern "C" {
#endif

H5_DLL hid_t H5FD_stdio_init(void);
H5_DLL void H5FD_stdio_term(void);
H5_DLL herr_t H5Pset_fapl_stdio(hid_t fapl_id);

#ifdef __cplusplus
}
#endif

#endif