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

Collapse All | Expand All

(-)a/include/linux.h (-2 / +1 lines)
Lines 331-338 fsmap_advance( Link Here
331
#define MAP_SYNC 0
331
#define MAP_SYNC 0
332
#define MAP_SHARED_VALIDATE 0
332
#define MAP_SHARED_VALIDATE 0
333
#else
333
#else
334
#include <asm-generic/mman.h>
334
#include <sys/mman.h>
335
#include <asm-generic/mman-common.h>
336
#endif /* HAVE_MAP_SYNC */
335
#endif /* HAVE_MAP_SYNC */
337
336
338
#endif	/* __XFS_LINUX_H__ */
337
#endif	/* __XFS_LINUX_H__ */
(-)a/m4/package_libcdev.m4 (-2 / +1 lines)
Lines 335-342 AC_DEFUN([AC_HAVE_STATFS_FLAGS], Link Here
335
AC_DEFUN([AC_HAVE_MAP_SYNC],
335
AC_DEFUN([AC_HAVE_MAP_SYNC],
336
  [ AC_MSG_CHECKING([for MAP_SYNC])
336
  [ AC_MSG_CHECKING([for MAP_SYNC])
337
    AC_TRY_COMPILE([
337
    AC_TRY_COMPILE([
338
#include <asm-generic/mman.h>
338
#include <sys/mman.h>
339
#include <asm-generic/mman-common.h>
340
    ], [
339
    ], [
341
        int flags = MAP_SYNC | MAP_SHARED_VALIDATE;
340
        int flags = MAP_SYNC | MAP_SHARED_VALIDATE;
342
    ], have_map_sync=yes
341
    ], have_map_sync=yes

Return to bug 719826