File: package_types.m4

package info (click to toggle)
xfsprogs 4.9.0%2Bnmu1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 8,012 kB
  • ctags: 10,574
  • sloc: ansic: 110,850; sh: 3,804; makefile: 863; python: 126
file content (11 lines) | stat: -rw-r--r-- 247 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#
# Check if we have umode_t
#
AC_DEFUN([AC_TYPE_UMODE_T],
  [ AC_MSG_CHECKING([for umode_t])
    AC_TRY_COMPILE([
#include <asm/types.h>
    ], [
         umode_t umode;
    ], AC_DEFINE(HAVE_UMODE_T) AC_MSG_RESULT(yes) , AC_MSG_RESULT(no))
  ])