From 2a6e51c7ee867fe3f4b7dd07dee5517533a967be Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Fri, 26 Feb 2016 18:14:33 +0100 Subject: Remove codegen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Codegen generates code specific to spice-common submodule. It's not meant as a generic protocol header or specification. See discussion and commits about spice-common codegen re-import. Signed-off-by: Marc-André Lureau --- configure.ac | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index e8d118d..6d96f76 100644 --- a/configure.ac +++ b/configure.ac @@ -14,25 +14,8 @@ AM_MAINTAINER_MODE m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) -dnl Enable generation of enums.h, mainly useful when building from git, -dnl should not be needed for tarball users -AC_ARG_ENABLE([code-generator], - AS_HELP_STRING([--enable-code-generator=@<:@yes/no/auto@:>@], - [Enable checks needed to use the Python code generator @<:@default=auto@:>@]), - [], - [enable_code_generator="auto"]) -if test "x$enable_code_generator" != "xno"; then - AS_IF([test "x$enable_code_generator" = "xyes"], modules_required=[1], modules_required=[]) - AX_PYTHON_MODULE([six], $modules_required) - AX_PYTHON_MODULE([pyparsing], $modules_required) - AS_IF([test "x${HAVE_PYMOD_SIX}" = "xno"], enable_code_generator="no") - AS_IF([test "x${HAVE_PYMOD_PYPARSING}" = "xno"], enable_code_generator="no") -fi -AM_CONDITIONAL([ENABLE_CODEGEN], [test "x$enable_code_generator" != "xno"]) - AC_OUTPUT([ Makefile spice-protocol.pc spice/Makefile -python_modules/Makefile ]) -- cgit