summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2010-10-04 17:30:22 -0400
committerDana Jansens <danakj@orodu.net>2010-10-04 17:36:08 -0400
commit27ae9d65c838478f1c7e07ec52a6848600865bf1 (patch)
tree9538d959f3bb1877e9e73d0d64d6a7491de72294 /configure.ac
parent2813d2c1612ce09cf1b8fe8e70d3d122f6b11b69 (diff)
fix make distcheck
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 4259cda1..78b5aa67 100644
--- a/configure.ac
+++ b/configure.ac
@@ -98,6 +98,11 @@ if test "$SED" = "no"; then
AC_MSG_ERROR([The program "sed" is not available. This program is required to build Openbox.])
fi
+AC_PATH_PROG([DIRNAME], [dirname], [no])
+if test "$DIRNAME" = "no"; then
+ AC_MSG_ERROR([The program "dirname" is not available. This program is required to build Openbox.])
+fi
+
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.14.0])
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)