diff --git a/configure.ac b/configure.ac index 20f9e4ed..a98736eb 100644 --- a/configure.ac +++ b/configure.ac @@ -277,11 +277,11 @@ AM_CONDITIONAL(USE_GPGME, test "x$have_gpgme" = xyes) dnl composefs won't work at all without this AC_MSG_CHECKING([for MOUNT_ATTR_IDMAP]) AC_COMPILE_IFELSE( - [AC_LANG_SOURCE([[ - #include + [AC_LANG_PROGRAM([ #include - int foo = MOUNT_ATTR_IDMAP; - ]])], + #include + ],[int foo = MOUNT_ATTR_IDMAP;] + )], [AC_MSG_RESULT(yes) have_mount_attr_idmap=yes], [AC_MSG_RESULT(no)])