diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-02-16 01:43:00 +0100 |
---|---|---|
committer | Wim Taymans <wtaymans@redhat.com> | 2014-04-02 14:37:02 +0200 |
commit | 743511cbe889d773c5d4a1c861d377a6656f3646 (patch) | |
tree | 643954460358b352fb2a1d3a3f9a48a9f60a3a23 | |
parent | 890ff18d9ce355592f8391b792b6d44017aa7a8e (diff) |
build-sys: add gobject to build dependencies
Since we call g_object_unref() we need to link against gobject in
compliance of the new Fedora implicit DSO linking policy.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c9ec49009..1b8078805 100644 --- a/configure.ac +++ b/configure.ac @@ -893,7 +893,7 @@ AC_ARG_ENABLE([gconf], [gconf=auto]) if test "x${gconf}" != xno ; then - PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 ], + PKG_CHECK_MODULES(GCONF, [ gconf-2.0 >= 2.4.0 gobject-2.0 ], HAVE_GCONF=1, [ HAVE_GCONF=0 |