[svn-r27376] set default value of SIZEOF___FLOAT128

This commit is contained in:
Scot Breitenfeld 2015-07-14 09:14:05 -05:00
parent 838755cf71
commit f50c602b01

View File

@ -149,11 +149,13 @@ endif (NOT WINDOWS)
#-----------------------------------------------------------------------------
# Check if C has __float128 extension
#-----------------------------------------------------------------------------
CHECK_TYPE_SIZE("__float128" SIZEOF___FLOAT128)
if(${HAVE_SIZEOF___FLOAT128})
SET(H5_HAVE_FLOAT128 1)
else (${HAVE_SIZEOF___FLOAT128})
SET(H5_HAVE_FLOAT128 0)
SET(SIZEOF___FLOAT128 0)
endif(${HAVE_SIZEOF___FLOAT128})
#-----------------------------------------------------------------------------