Switch to unified view
a/src/common/autoconfig.h.in | b/src/common/autoconfig.h.in | ||
---|---|---|---|
... |
... |
||
109 | /* Define to 1 if the X Window System is missing or not being used. */ |
109 | /* Define to 1 if the X Window System is missing or not being used. */ |
110 | #undef X_DISPLAY_MISSING |
110 | #undef X_DISPLAY_MISSING |
111 | 111 | ||
112 | #undef _FILE_OFFSET_BITS |
112 | #undef _FILE_OFFSET_BITS |
113 | #undef _LARGE_FILES |
113 | #undef _LARGE_FILES |
114 | |||
115 | /* The __FreeBSD_kernel__ thing is for debian/kfreebsd. */ |
||
116 | #if _FILE_OFFSET_BITS == 64 || defined(__APPLE__) || defined(__OpenBSD__) ||\ |
||
117 | defined(__FreeBSD_kernel__) || (defined(__FreeBSD__) && __FreeBSD__ >= 9) |
||
118 | #define OFFTPC "%lld" |
||
119 | #else |
||
120 | #define OFFTPC "%ld" |
||
121 | #endif |