diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-09-01 17:25:16 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-09-01 17:25:16 (GMT) |
commit | f65eec188f1c8aa5512a2529a994d44fd7d2b6b7 (patch) | |
tree | 5dfce1cd7a5b58cf95445ec0b10426baad9910e9 /hl | |
parent | 6bf6f488d76ee4133cb6b2361cca959d441d82e4 (diff) | |
download | hdf5-f65eec188f1c8aa5512a2529a994d44fd7d2b6b7.zip hdf5-f65eec188f1c8aa5512a2529a994d44fd7d2b6b7.tar.gz hdf5-f65eec188f1c8aa5512a2529a994d44fd7d2b6b7.tar.bz2 |
[svn-r19337] Change #ifndef _WIN32 to #ifdef H5_HAVE_UNISTD_H
Tested: windows, heiwa and local linux
Diffstat (limited to 'hl')
-rw-r--r-- | hl/src/H5LTanalyze.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hl/src/H5LTanalyze.c b/hl/src/H5LTanalyze.c index 9e9eec2..767dfd7 100644 --- a/hl/src/H5LTanalyze.c +++ b/hl/src/H5LTanalyze.c @@ -15,8 +15,8 @@ /* * This file was generated by Lex with the command "lex -PH5LTyy -oH5LTanalyze.c H5LTanalyze.l". - * Do NOT modify it by hand, but in line 52, "#ifndef _WIN32" should be added because - * Windows doesn't have unistd.h header file. + * Do NOT modify it by hand, but in line 52, "#ifdef H5_HAVE_UNISTD_H" should be added if + * the platform doesn't have the unistd.h header file. */ #define yy_create_buffer H5LTyy_create_buffer @@ -49,7 +49,7 @@ #define YY_FLEX_MINOR_VERSION 5 #include <stdio.h> -#ifndef _WIN32 +#ifdef H5_HAVE_UNISTD_H #include <unistd.h> #endif |