From accabb79b10477a25e77ffff0088bb352b936d9f Mon Sep 17 00:00:00 2001 From: Uri Lublin Date: Sun, 10 Jan 2010 14:18:09 +0200 Subject: [PATCH] spice: common: Do not m4_include configure.ac.shared (subdir config) There are some requirement checks in configure.ac.shared that spice-common does not need to do. Signed-off-by: Uri Lublin --- common/configure.ac | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/common/configure.ac b/common/configure.ac index 0e513160..4cd94222 100644 --- a/common/configure.ac +++ b/common/configure.ac @@ -7,8 +7,14 @@ m4_define([SPICE_MICRO], 1) AC_INIT(spice-common, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice-common) AC_CONFIG_MACRO_DIR([m4]) +AM_CONFIG_HEADER([config.h]) +AC_CONFIG_AUX_DIR(.) -m4_include(configure.ac.shared) +AM_INIT_AUTOMAKE([dist-bzip2]) +AM_MAINTAINER_MODE + +AC_PROG_INSTALL +AC_CANONICAL_HOST AC_CONFIG_FILES([Makefile spice-common.pc]) AC_OUTPUT