<configure name="LIB_VERSION" value="0x659"/>
<configure name="LIB_VERSION_NUMBER" value="6,5,9,1"/>
<configure name="RELEASE_DATE" value="2010-01-22"/>
- <configure name="CONFIGURE" value="./configure "/>
+ <configure name="CONFIGURE" value="./configure '--enable-maintainer-mode'"/>
<configure name="PREFIX" value="/usr/local"/>
<configure name="EXEC-PREFIX" value="/usr/local"/>
<configure name="VERSION" value="6.5.9"/>
if ((image_nexus == (NexusInfo **) NULL) ||
(clip_nexus == (NexusInfo **) NULL))
ThrowBinaryException(CacheError,"UnableToGetCacheNexus",image->filename);
- p=GetAuthenticPixelCacheNexus(image,nexus_info->region.x,nexus_info->region.y,
- nexus_info->region.width,nexus_info->region.height,image_nexus[0],
- exception);
+ p=GetAuthenticPixelCacheNexus(image,nexus_info->region.x,
+ nexus_info->region.y,nexus_info->region.width,nexus_info->region.height,
+ image_nexus[0],exception);
indexes=GetPixelCacheNexusIndexes(image->cache,image_nexus[0]);
q=nexus_info->pixels;
nexus_indexes=nexus_info->indexes;
(cache_info->reference_count == 1))
{
LockSemaphoreInfo(cache_info->semaphore);
- if ((cache_info->mode != ReadMode) && (cache_info->type != MemoryCache) &&
+ if ((cache_info->mode != ReadMode) &&
+ (cache_info->type != MemoryCache) &&
(cache_info->reference_count == 1))
{
int
return(page_size);
#if defined(MAGICKCORE_HAVE_SYSCONF) && defined(_SC_PAGE_SIZE)
page_size=sysconf(_SC_PAGE_SIZE);
-#endif
+#else
#if defined(MAGICKCORE_HAVE_GETPAGESIZE)
- if (page_size <= 0)
- page_size=getpagesize();
+ page_size=getpagesize();
+#endif
#endif
if (page_size <= 0)
page_size=16384;