From 113b2250b7d6f075f6b2c3aacae7500ab9f8fb03 Mon Sep 17 00:00:00 2001 From: Jonathan Beck Date: Sat, 25 Oct 2008 16:50:28 +0200 Subject: add configure options to control building of development tools --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 7fc417c..2c08d10 100644 --- a/configure.ac +++ b/configure.ac @@ -38,4 +38,11 @@ AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) +AC_ARG_ENABLE([dev-tools], + [AS_HELP_STRING([--enable-dev-tools], + [build development helper tools (default is no)])], + [build_dev_tools=true], + [build_dev_tools=false]) +AM_CONDITIONAL(BUILD_DEV_TOOLS, test x$build_dev_tools = xtrue) + AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc) -- cgit v1.1-32-gdbae