Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 267105 | Differences between
and this patch

Collapse All | Expand All

(-)src/common.h.dist (-3 / +1 lines)
Lines 39-50 Link Here
39
39
40
#if (SIZEOF_LONG == 8)
40
#if (SIZEOF_LONG == 8)
41
#	define	SF_PLATFORM_S64(x)		x##l
41
#	define	SF_PLATFORM_S64(x)		x##l
42
#elif COMPILER_IS_GCC
43
#	define	SF_PLATFORM_S64(x)		x##ll
44
#elif OS_IS_WIN32
42
#elif OS_IS_WIN32
45
#	define	SF_PLATFORM_S64(x)		x##I64
43
#	define	SF_PLATFORM_S64(x)		x##I64
46
#else
44
#else
47
#	error "Don't know how to define a 64 bit integer constant."
45
#	define	SF_PLATFORM_S64(x)		x##ll
48
#endif
46
#endif
49
47
50
48
(-)tests/utils.h.dist (+2 lines)
Lines 29-35 Link Here
29
extern "C" {
29
extern "C" {
30
#endif	/* __cplusplus */
30
#endif	/* __cplusplus */
31
31
32
#ifndef __cplusplus
32
#include <stdint.h>
33
#include <stdint.h>
34
#endif
33
#include <stdarg.h>
35
#include <stdarg.h>
34
36
35
#define SF_COUNT_TO_LONG(x)	((long) (x))
37
#define SF_COUNT_TO_LONG(x)	((long) (x))

Return to bug 267105