util.h   util.h 
skipping to change at line 160 skipping to change at line 160
#define VIPS_CLIP_UINT( V, SEQ ) \ #define VIPS_CLIP_UINT( V, SEQ ) \
G_STMT_START { \ G_STMT_START { \
if( (V) < 0 ) { \ if( (V) < 0 ) { \
(SEQ)->underflow++; \ (SEQ)->underflow++; \
(V) = 0; \ (V) = 0; \
} \ } \
} G_STMT_END } G_STMT_END
#define VIPS_CLIP_NONE( V, SEQ ) {} #define VIPS_CLIP_NONE( V, SEQ ) {}
/* Not all platforms have PATH_MAX (eg. Hurd) and we don't need a platform
one
* anyway, just a static buffer big enough for almost any path.
*/
#define VIPS_PATH_MAX (4096)
const char *vips_enum_string( GType enm, int value ); const char *vips_enum_string( GType enm, int value );
const char *vips_enum_nick( GType enm, int value ); const char *vips_enum_nick( GType enm, int value );
int vips_enum_from_nick( const char *domain, GType type, const char *str ); int vips_enum_from_nick( const char *domain, GType type, const char *str );
gboolean vips_slist_equal( GSList *l1, GSList *l2 ); gboolean vips_slist_equal( GSList *l1, GSList *l2 );
void *vips_slist_map2( GSList *list, VipsSListMap2Fn fn, void *a, void *b ) ; void *vips_slist_map2( GSList *list, VipsSListMap2Fn fn, void *a, void *b ) ;
void *vips_slist_map2_rev( GSList *list, VipsSListMap2Fn fn, void *a, void *b ); void *vips_slist_map2_rev( GSList *list, VipsSListMap2Fn fn, void *a, void *b );
void *vips_slist_map4( GSList *list, void *vips_slist_map4( GSList *list,
VipsSListMap4Fn fn, void *a, void *b, void *c, void *d ); VipsSListMap4Fn fn, void *a, void *b, void *c, void *d );
void *vips_slist_fold2( GSList *list, void *start, void *vips_slist_fold2( GSList *list, void *start,
 End of changes. 1 change blocks. 
0 lines changed or deleted 6 lines changed or added


 version.h   version.h 
/* Macros for the header version. /* Macros for the header version.
*/ */
#ifndef VIPS_VERSION_H #ifndef VIPS_VERSION_H
#define VIPS_VERSION_H #define VIPS_VERSION_H
#define VIPS_VERSION "7.36.4" #define VIPS_VERSION "7.36.5"
#define VIPS_VERSION_STRING "7.36.4-Mon Jan 20 18:10:31 MSK 2014" #define VIPS_VERSION_STRING "7.36.5-Mon Jan 20 17:15:17 MSK 2014"
#define VIPS_MAJOR_VERSION (7) #define VIPS_MAJOR_VERSION (7)
#define VIPS_MINOR_VERSION (36) #define VIPS_MINOR_VERSION (36)
#define VIPS_MICRO_VERSION (4) #define VIPS_MICRO_VERSION (5)
/* Not really anything to do with versions, but this is a handy place to pu t /* Not really anything to do with versions, but this is a handy place to pu t
* it. * it.
*/ */
#define VIPS_EXEEXT "" #define VIPS_EXEEXT ""
#endif /*VIPS_VERSION_H*/ #endif /*VIPS_VERSION_H*/
 End of changes. 2 change blocks. 
3 lines changed or deleted 3 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/