[glib] build: Fix all statfs() tests failing
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] build: Fix all statfs() tests failing
- Date: Mon, 4 Apr 2016 13:10:10 +0000 (UTC)
commit e9cf9f2c59e3af819e6d6a339077be5652daaf2b
Author: Bastien Nocera <hadess hadess net>
Date: Mon Apr 4 10:57:20 2016 +0200
build: Fix all statfs() tests failing
The current statfs() compilation tests all fail because statfs() expects
the first argument to be non-null. Pass a dummy path instead of NULL to
satisfy the compiler.
https://bugzilla.gnome.org/show_bug.cgi?id=764574
configure.ac | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 3eca893..ca5f7e9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1064,7 +1064,7 @@ AS_IF([test "$ac_cv_func_statfs" = yes], [
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif], [struct statfs st;
- statfs(NULL, &st);],[
+ statfs("/", &st);],[
AC_MSG_RESULT([2])
AC_DEFINE(STATFS_ARGS, 2, [Number of arguments to statfs()])],[
AC_TRY_COMPILE([#include <unistd.h>
@@ -1080,7 +1080,7 @@ AS_IF([test "$ac_cv_func_statfs" = yes], [
#ifdef HAVE_SYS_STATFS_H
#include <sys/statfs.h>
#endif], [struct statfs st;
- statfs(NULL, &st, sizeof (st), 0);],[
+ statfs("/", &st, sizeof (st), 0);],[
AC_MSG_RESULT([4])
AC_DEFINE(STATFS_ARGS, 4, [Number of arguments to statfs()])],[
AC_MSG_RESULT(unknown)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]