Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2008-08-27 19:57:44 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2008-08-27 19:57:44 (GMT)
commit14cef7ef60bd073b9d67bf913b1387b70fdc374a (patch)
tree3c1ac602b0f8a94ad77e4ffeb42a1315ac695454
parent5074774017a77674173eb09704a956ccdda77658 (diff)
Fail if icon-slicer is not installed.
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c679d72..51eff07 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,6 +15,9 @@ AC_HEADER_STDC
AC_PROG_LIBTOOL
AC_PATH_PROG([ICON_SLICER], [icon-slicer])
+if test -z "$ICON_SLICER"; then
+ AC_MSG_ERROR([icon-slicer is required])
+fi
PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.0.0,,
AC_MSG_ERROR([GTK+-2.0 is required to compile redhat-artwork]))