# HG changeset patch # User Jim Meyering # Date 957167914 0 # Node ID 074b568b76a2ec17864d196c7a7870f8ebbefc56 # Parent 3bb50ce0aa3f34f049fdcea06cf9066a4f8b436a (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support. diff --git a/m4/ls-mntd-fs.m4 b/m4/ls-mntd-fs.m4 --- a/m4/ls-mntd-fs.m4 +++ b/m4/ls-mntd-fs.m4 @@ -1,4 +1,4 @@ -#serial 3 +#serial 4 dnl From Jim Meyering. dnl @@ -201,6 +201,22 @@ fi if test -z "$ac_list_mounted_fs"; then + # BeOS + AC_MSG_CHECKING([for next_dev function]) + AC_CACHE_VAL(fu_cv_sys_mounted_next_dev, + [AC_TRY_CPP([#include ], + fu_cv_sys_mounted_next_dev=yes, + fu_cv_sys_mounted_next_dev=no)]) + AC_MSG_RESULT($fu_cv_sys_mounted_next_dev) + if test $fu_cv_sys_mounted_next_dev = yes; then + ac_list_mounted_fs=found + AC_DEFINE(MOUNTED_NEXT_DEV, 1, + [Define if there are functions named next_dev and fs_stat_dev for + reading the list of mounted filesystems. (BeOS)]) + fi +fi + +if test -z "$ac_list_mounted_fs"; then # SVR2 AC_MSG_CHECKING([whether it is possible to resort to fread on /etc/mnttab]) AC_CACHE_VAL(fu_cv_sys_mounted_fread,