hdf5/perform
Xuan Bai ea2dd2a44a [svn-r9844] Purpose:
Bug fix.

Description:
Function _flushall() is not available on Cygwin.  So a Cgywin macro is added so the compiler will not call this function when building HDF5 on Cygwin.

Solution:
Change the following codes:

#ifdef H5_HAVE_SYSTEM
#ifdefined WIN32
	_flushall();
#else
    HDsystem ("sync");
    HDsystem ("df >/dev/null");
#endif

to:

#ifdef H5_HAVE_SYSTEM
#if defined(WIN32) && ! defined(__CYGWIN__)
	_flushall();
#else
    HDsystem ("sync");
    HDsystem ("df >/dev/null");
#endif



Platforms tested:
Cygwin 1.5.11, VC 6.0 on XP.
Linux 2.4 (heping)
Solaris 2.7 (arabica)

Misc. update:
2005-01-20 15:46:33 -05:00
..
2003-05-07 15:49:51 -05:00
2004-12-29 09:26:20 -05:00
2004-08-02 09:06:07 -05:00
2002-06-29 19:11:42 -05:00
2005-01-20 15:46:33 -05:00
2002-01-07 17:47:22 -05:00
2004-12-29 09:26:20 -05:00
2004-12-29 09:26:20 -05:00
2002-06-29 19:11:42 -05:00
2004-12-29 09:26:20 -05:00
2003-06-24 10:37:24 -05:00
2003-06-24 10:37:24 -05:00
2002-06-29 19:11:42 -05:00
2002-06-29 19:11:42 -05:00
2004-12-29 09:26:20 -05:00