diff options
author | Mark Kettenis <kettenis@openbsd.org> | 2013-03-26 20:50:53 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-03-26 20:18:10 +0000 |
commit | 3dddb01005274376c8cdc5eecad36d4e0723004a (patch) | |
tree | 842c0af39d7c819cd682bfa5d8589ecc2facb700 /configure.ac | |
parent | e63390df52117e1d3ca9d23a736e9995bc734765 (diff) |
sna: Use a more portable way to determine total RAM size
The sysinfo function is Linux-specific. sysconf(_SC_PHYS_PAGES), while
not truly portable, is available on many more systems, including Linux,
Solaris, NetBSD, FreeBSD and OpenBSD. So use that instead. Verified
that this results in the same value as the sysinfo call on a handful of
Linux systems.
Signed-off-by: Mark Kettenis <kettenis@openbsd.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index de3990d1..8b12d01a 100644 --- a/configure.ac +++ b/configure.ac @@ -200,12 +200,12 @@ AC_ARG_ENABLE(sna, [SNA="$enableval"], [SNA=auto]) -AC_CHECK_HEADERS([sys/sysinfo.h], , SNA=no) if test "x$SNA" = "xauto" && pkg-config --exists "xorg-server >= 1.10"; then SNA=yes fi if test "x$SNA" != "xno"; then AC_DEFINE(USE_SNA, 1, [Enable SNA support]) + AC_CHECK_HEADERS([sys/sysinfo.h]) fi AC_MSG_CHECKING([whether to include SNA support]) AM_CONDITIONAL(SNA, test x$SNA != xno) |