diff options
author | Hubert Figuière <hub@figuiere.net> | 2016-11-26 18:54:41 -0500 |
---|---|---|
committer | Hubert Figuière <hub@figuiere.net> | 2016-11-26 20:53:23 -0500 |
commit | 780a7913ec9d6524491a4e58a17fb4a1560a0d28 (patch) | |
tree | 414fae61e56a67f2d4a39743b3630efbe15d0ddd | |
parent | 08b9783166bed7169c06e3b226c477934d2fa30b (diff) |
configure: allow make distcheck to pass by force disabling GNOME supportlibopenraw-0.1.0
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -110,6 +110,7 @@ Internal changes: - IO::Streams used shared_ptr<> - New tracing/logging API. - Use 16bits CRC for testsuite. + - Allow `make distscheck` to pass by disabling GNOME support. libopenraw 0.0.9 - 2011/11/13 diff --git a/configure.ac b/configure.ac index a37fb6e..e88d03a 100644 --- a/configure.ac +++ b/configure.ac @@ -179,6 +179,9 @@ AC_ARG_ENABLE(asan,[ --enable-asan Turn on address sanitizer],[ ]) +dnl we need to disable gdk pixbuf for distcheck +DISTCHECK_CONFIGURE_FLAGS="--disable-gnome" +AC_SUBST([DISTCHECK_CONFIGURE_FLAGS]) AC_OUTPUT([ Makefile |