summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 62023c7..4433f5c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
2# Process this file with autoconf to produce a configure script. 2# Process this file with autoconf to produce a configure script.
3 3
4AC_PREREQ(2.61) 4AC_PREREQ(2.61)
5AC_INIT(libiphone, 0.9.1, nospam@nowhere.com) 5AC_INIT(libiphone, 0.9.2, nospam@nowhere.com)
6AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip]) 6AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip])
7AC_CONFIG_SRCDIR([src/]) 7AC_CONFIG_SRCDIR([src/])
8AC_CONFIG_HEADERS([config.h]) 8AC_CONFIG_HEADERS([config.h])
@@ -52,6 +52,10 @@ AC_ARG_ENABLE([dev-tools],
52 [build_dev_tools=false]) 52 [build_dev_tools=false])
53if test "$build_dev_tools" = true; then 53if test "$build_dev_tools" = true; then
54 DEV_SUB=dev 54 DEV_SUB=dev
55 AC_CHECK_HEADERS([readline/readline.h],
56 [],
57 [AC_MSG_ERROR([Please install readline development headers])]
58 )
55else 59else
56 DEV_SUB= 60 DEV_SUB=
57fi 61fi