Skip to content
Snippets Groups Projects
Commit 79ed5544 authored by Olivier Fourdan's avatar Olivier Fourdan :tools:
Browse files

configure: check for exo-csource


Bug: 11870

exo-csource is required only for maintainer mode.

Signed-off-by: default avatarOlivier Fourdan <fourdan@xfce.org>
parent 5eb0769b
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,17 @@ XDT_CHECK_PACKAGE([LIBWNCK], [libwnck-1.0], [wnck_minimum_version])
XDT_CHECK_PACKAGE([DBUS], [dbus-1], [1.0.0])
XDT_CHECK_PACKAGE([DBUS_GLIB], [dbus-glib-1], [0.72])
AS_IF([test "x$USE_MAINTAINER_MODE" = "xyes"],
[
AC_PATH_PROG([EXO_CSOURCE], [exo-csource])
AS_IF([test -z "$EXO_CSOURCE"],
[
echo '*** The program "exo-csource" is required to build when --enable-maintainer-mode'
echo '*** is specified.'
exit 1
])
])
dnl
dnl Sync to vblank support
dnl
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment