8057934: Upgrade to LittleCMS 2.6 breaks AIX build

Reviewed-by: prr, serb
This commit is contained in:
Volker Simonis 2014-09-10 11:01:59 +02:00
parent 2a90745d9d
commit 138a20315d

View File

@ -77,7 +77,7 @@
// Symbols
typedef enum {
SNONE,
SUNDEFINED,
SINUM, // Integer
SDNUM, // Real
SIDENT, // Identifier
@ -550,7 +550,7 @@ SYMBOL BinSrchKey(const char *id)
else l = x + 1;
}
return SNONE;
return SUNDEFINED;
}
@ -735,7 +735,7 @@ void InSymbol(cmsIT8* it8)
key = BinSrchKey(it8->id);
if (key == SNONE) it8->sy = SIDENT;
if (key == SUNDEFINED) it8->sy = SIDENT;
else it8->sy = key;
}
@ -1326,7 +1326,7 @@ cmsHANDLE CMSEXPORT cmsIT8Alloc(cmsContext ContextID)
it8->ValidKeywords = NULL;
it8->ValidSampleID = NULL;
it8 -> sy = SNONE;
it8 -> sy = SUNDEFINED;
it8 -> ch = ' ';
it8 -> Source = NULL;
it8 -> inum = 0;