diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-09-06 21:28:22 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-09-06 21:28:22 +0800 |
commit | 8cfcb6905f4c4dca488987f22a847dd1283b39ac (patch) | |
tree | 4b4661a2ee6ff67be476f9aa194b9729d7db2bb9 /configure.ac | |
parent | b01497d86f8ed6d1f3ddbfc66d2c5c1354c9afb3 (diff) | |
download | gsoc2013-epiphany-8cfcb6905f4c4dca488987f22a847dd1283b39ac.tar.gz gsoc2013-epiphany-8cfcb6905f4c4dca488987f22a847dd1283b39ac.tar.zst gsoc2013-epiphany-8cfcb6905f4c4dca488987f22a847dd1283b39ac.zip |
configure.ac: gdbus-codegen is required
Fail if it's not found. Apparently gentoo ships this independently of
glib, so it can happen.
https://bugzilla.gnome.org/show_bug.cgi?id=657610
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 28eb038f8..2e3fa5780 100644 --- a/configure.ac +++ b/configure.ac @@ -292,7 +292,7 @@ fi AM_CONDITIONAL([ENABLE_ZEROCONF],[test "$enable_zeroconf" = "yes"]) # GDBus codegen -AC_PATH_PROG([GDBUS_CODEGEN], [gdbus-codegen]) +AC_PATH_PROG([GDBUS_CODEGEN], [gdbus-codegen], AC_MSG_ERROR([gdbus-codegen is required but was not found])) # ************ # Misc defines |