X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fconfigure.ac;h=43e331bf94666dc02b097e002930cc65ca5f122b;hp=126e125ada8d00ebe682b6cd7a9ad65bb3b91157;hb=13a499406fe43ab3a6d4d13c660f6a8b368e638f;hpb=e05ddc70f1fa6d1e8253d69c5d17e69bfad2be90 diff --git a/daemon/configure.ac b/daemon/configure.ac index 126e125..43e331b 100644 --- a/daemon/configure.ac +++ b/daemon/configure.ac @@ -19,6 +19,9 @@ AC_INIT([libguestfs-daemon],[1.0.0]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign]) +m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])]) +AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. + AC_CONFIG_MACRO_DIR([m4]) dnl If the user specified --enable-32bit, then force the C compiler @@ -67,7 +70,7 @@ AC_CHECK_LIB([portablexdr],[xdrmem_create],[],[ ]) dnl Functions which may not be available in older distributions. -AC_CHECK_FUNCS([futimens listxattr llistxattr getxattr lgetxattr setxattr lsetxattr removexattr lremovexattr]) +AC_CHECK_FUNCS([futimens listxattr llistxattr getxattr lgetxattr setxattr lsetxattr removexattr lremovexattr inotify_init1]) dnl For modified printf, we need glibc either (old-style) dnl register_printf_function or (new-style) register_printf_specifier.