diff options
Diffstat (limited to 'plugins/common.h')
-rw-r--r-- | plugins/common.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/common.h b/plugins/common.h index 47252aa4..ac3b8339 100644 --- a/plugins/common.h +++ b/plugins/common.h @@ -114,6 +114,11 @@ #include <locale.h> #endif +/* Fixes "Cannot use swapctl in the large files compilation environment" error on Solaris */ +#ifdef _FILE_OFFSET_BITS +#undef _FILE_OFFSET_BITS +#endif + #ifdef HAVE_DECL_SWAPCTL # ifdef HAVE_SYS_SWAP_H # include <sys/swap.h> |