diff options
author | Julien Danjou <julien@danjou.info> | 2008-11-07 11:02:08 +0100 |
---|---|---|
committer | Julien Danjou <julien@danjou.info> | 2008-11-07 11:02:08 +0100 |
commit | 5b4291827f0f75c565aaefeca3b79fb25b44aefd (patch) | |
tree | 7961bcff2d70fc1099f416b6eb84236443b8c4b1 | |
parent | 83169c15edcc2707a41672637d7651c7c59720c8 (diff) |
configure: stop if m4 is not found
Signed-off-by: Julien Danjou <julien@danjou.info>
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6e6968a..0d85f37 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,10 @@ AC_INIT([xcb-util],0.3.0,[xcb@lists.freedesktop.org]) AC_CONFIG_SRCDIR([Makefile.am]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) -AC_CHECK_PROGS(M4, m4) +AC_CHECK_PROGS(M4, m4, [no]) +if test $M4 = "no"; then + AC_MSG_ERROR([Can't find m4, please install it and try again]) +fi AC_CHECK_PROGS(GPERF, gperf, [no]) if test $GPERF = "no"; then AC_MSG_ERROR([Can't find gperf, please install it and try again]) |