]> git.ipfire.org Git - ipfire.org.git/blobdiff - configure.ac
docs: Replace "IPFire Wiki" with "IPFire Documentation"
[ipfire.org.git] / configure.ac
index 2acd795b30cf48dc9c3f5aa5320df3833d38cd30..c5f4c7f2d4af37f79c20c129983f8d716a40c90b 100644 (file)
@@ -26,10 +26,25 @@ AC_PROG_MKDIR_P
 AC_PROG_SED
 
 # Python
-AM_PATH_PYTHON([3.5])
+AM_PATH_PYTHON([3.4])
 
-# scss
+# sass
 AC_CHECK_PROG(SASSC, [sassc], [sassc])
+if test -z "${SASSC}"; then
+       AC_MSG_ERROR([sassc is required])
+fi
+
+# convert from ImageMagick
+AC_CHECK_PROG(CONVERT, [convert], [convert])
+if test -z "${CONVERT}"; then
+       AC_MSG_ERROR([convert is required])
+fi
+
+# ffmpeg
+AC_CHECK_PROG(FFMPEG, [ffmpeg], [ffmpeg])
+if test -z "${FFMPEG}"; then
+       AC_MSG_ERROR([ffmpeg is required])
+fi
 
 # ------------------------------------------------------------------------------