summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
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
38AC_FUNC_REALLOC 38AC_FUNC_REALLOC
39AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) 39AC_CHECK_FUNCS([strcasecmp strdup strerror strndup])
40 40
41AC_ARG_ENABLE([dev-tools],
42 [AS_HELP_STRING([--enable-dev-tools],
43 [build development helper tools (default is no)])],
44 [build_dev_tools=true],
45 [build_dev_tools=false])
46AM_CONDITIONAL(BUILD_DEV_TOOLS, test x$build_dev_tools = xtrue)
47
41AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc) 48AC_OUTPUT(Makefile src/Makefile include/Makefile fdi/Makefile libiphone-1.0.pc)