GNOME Bugzilla – Bug 646444
configuring with --enable-gdu
Last modified: 2018-05-04 10:12:41 UTC
configuring with --enable-gdu doesn't cause configure to bail out if gdu is missing. I had a look at the configure.ac in master and it doesn't look different so i'm guessing this is still a bug.
Thanks for your report. This applies to every module used as far as I can see. It can be solved by: fm@thinkpad:~/tmp/gvfs$ git diff diff --git a/configure.ac b/configure.ac index 2bcbebb..f46a73e 100644 --- a/configure.ac +++ b/configure.ac @@ -208,7 +208,7 @@ GDU_CFLAGS= GDU_REQUIRED=3.0.2 if test "x$enable_gdu" != "xno"; then - PKG_CHECK_EXISTS([gdu >= $GDU_REQUIRED], msg_gdu=yes) + PKG_CHECK_EXISTS([gdu >= $GDU_REQUIRED], msg_gdu=yes, AC_MSG_ERROR([Could not find GDU.])) if test "x$msg_gdu" = "xyes"; then PKG_CHECK_MODULES([GDU],[gdu >= $GDU_REQUIRED]) However, I am not sure if this is wanted...
This is an old bug and autotools and gdu support were already removed. Let's close as obsolete.