Fix error in if() expression in giflib/CMakeLists.txt.

This commit is contained in:
David Capello 2011-01-28 09:45:41 -03:00
parent 6ef082ad7f
commit b15f21bbd0

View File

@ -28,7 +28,7 @@ check_function_exists("vprintf" HAVE_VPRINTF)
check_function_exists("_doprnt" HAVE_DOPRNT) check_function_exists("_doprnt" HAVE_DOPRNT)
check_function_exists("strdup" HAVE_STRDUP) check_function_exists("strdup" HAVE_STRDUP)
if(${HAVE_STDINT_H} or ${HAVE_INTTYPES_H}) if(HAVE_STDINT_H OR HAVE_INTTYPES_H)
set("UINT32" "uint32_t") set("UINT32" "uint32_t")
else() else()
set("UINT32" "unsigned int") set("UINT32" "unsigned int")