Error out if any kernel panic is seen
[qemu-sanity-check.git] / configure.ac
index 791360f..31d3627 100644 (file)
@@ -15,7 +15,7 @@
 # with this program; if not, write to the Free Software Foundation, Inc.,
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
-AC_INIT([qemu-sanity-check],[1.1.3])
+AC_INIT([qemu-sanity-check],[1.1.6])
 AM_INIT_AUTOMAKE([foreign])
 
 dnl Check for basic C environment.
@@ -28,6 +28,8 @@ test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant])
 
 AM_PROG_CC_C_O
 
+AC_CHECK_HEADERS([sys/reboot.h])
+
 dnl Allow the package to override the default list of qemu binary
 dnl names which are tried, since this heavily depends on how qemu
 dnl has been packaged in the downstream distro.
@@ -68,7 +70,7 @@ AM_CONDITIONAL([HAVE_POD2MAN], [test "x$POD2MAN" != "xno"])
 
 dnl Produce output files.
 AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([qemu-sanity-check],[chmod 0555 qemu-sanity-check])
-AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([src/qemu-sanity-check],[chmod 0555 src/qemu-sanity-check])
+AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile])
 
 AC_OUTPUT