summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2016-02-26 18:14:33 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2016-03-10 16:57:08 +0100
commit2a6e51c7ee867fe3f4b7dd07dee5517533a967be (patch)
tree84173a25e43d1d59fca616539ee570d214f4b6c7 /configure.ac
parent7937915d67702a5c4b5147b277c432f5555e3852 (diff)
downloadspice-protocol-2a6e51c7ee867fe3f4b7dd07dee5517533a967be.tar.gz
spice-protocol-2a6e51c7ee867fe3f4b7dd07dee5517533a967be.tar.xz
spice-protocol-2a6e51c7ee867fe3f4b7dd07dee5517533a967be.zip
Remove codegen
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 <marcandre.lureau@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 0 insertions, 17 deletions
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
])