summaryrefslogtreecommitdiff
path: root/m4/virt-storage-fs.m4
blob: 6c61e61fa77bc06ed3e95de502036903fbd6b57d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
dnl The storage fs check
dnl
dnl Copyright (C) 2016 Red Hat, Inc.
dnl
dnl This library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Lesser General Public
dnl License as published by the Free Software Foundation; either
dnl version 2.1 of the License, or (at your option) any later version.
dnl
dnl This library is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dnl Lesser General Public License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public
dnl License along with this library.  If not, see
dnl <http://www.gnu.org/licenses/>.
dnl

AC_DEFUN([LIBVIRT_STORAGE_ARG_FS], [
  LIBVIRT_ARG_WITH_FEATURE([STORAGE_FS], [FileSystem backend for the storage driver],
                           [check])
])

AC_DEFUN([LIBVIRT_STORAGE_CHECK_FS], [
  if test "$with_storage_fs" = "yes" || test "$with_storage_fs" = "check"; then
    AC_CHECK_HEADER([mntent.h], , [
      if test "$with_storage_fs" = "check"; then
        with_storage_fs=no
        AC_MSG_NOTICE([<mntent.h> is required for the FS storage driver, disabling it])
      else
        AC_MSG_ERROR([<mntent.h> is required for the FS storage driver])
      fi
    ])
  fi

  if test "$with_storage_fs" = "yes" || test "$with_storage_fs" = "check"; then
    AC_PATH_PROG([MOUNT], [mount], [], [$LIBVIRT_SBIN_PATH])
    AC_PATH_PROG([UMOUNT], [umount], [], [$LIBVIRT_SBIN_PATH])
    AC_PATH_PROG([MKFS], [mkfs], [], [$LIBVIRT_SBIN_PATH])
    if test "$with_storage_fs" = "yes" ; then
      if test -z "$MOUNT" ; then
        AC_MSG_ERROR([We need mount for FS storage driver])
      fi
      if test -z "$UMOUNT" ; then
        AC_MSG_ERROR([We need umount for FS storage driver])
      fi
      if test -z "$MKFS" ; then
        AC_MSG_ERROR([We need mkfs for FS storage driver])
      fi
    else
      if test -z "$MOUNT" ; then
        with_storage_fs=no
      fi
      if test -z "$UMOUNT" ; then
        with_storage_fs=no
      fi
      if test -z "$MKFS" ; then
        with_storage_fs=no
      fi

      if test "$with_storage_fs" = "check" ; then
        with_storage_fs=yes
      fi
    fi

    if test "$with_storage_fs" = "yes" ; then
      AC_DEFINE_UNQUOTED([WITH_STORAGE_FS], 1,
                         [whether FS backend for storage driver is enabled])
      AC_DEFINE_UNQUOTED([MOUNT], ["$MOUNT"],
                         [Location or name of the mount program])
      AC_DEFINE_UNQUOTED([UMOUNT], ["$UMOUNT"],
                         [Location or name of the mount program])
      AC_DEFINE_UNQUOTED([MKFS], ["$MKFS"],
                         [Location or name of the mkfs program])
    fi
  fi
  AM_CONDITIONAL([WITH_STORAGE_FS], [test "$with_storage_fs" = "yes"])
  if test "$with_storage_fs" = "yes"; then
    AC_PATH_PROG([SHOWMOUNT], [showmount], [], [$LIBVIRT_SBIN_PATH])
    AC_DEFINE_UNQUOTED([SHOWMOUNT], ["$SHOWMOUNT"],
                       [Location or name of the showmount program])
  fi
])

AC_DEFUN([LIBVIRT_STORAGE_RESULT_FS], [
  LIBVIRT_RESULT([FS], [$with_storage_fs])
  LIBVIRT_RESULT([NetFS], [$with_storage_fs])
])