diff options
author | Kir Kolyshkin <[email protected]> | 2016-05-16 14:52:28 -0700 |
---|---|---|
committer | Kir Kolyshkin <[email protected]> | 2016-05-17 15:27:13 -0700 |
commit | 5ab184661ff38baca3ea2709d81932a578654392 (patch) | |
tree | 9a214d2a304b5e6ac4fb7c2056f93d9b40be097d | |
parent | d093ed148cded78110f5ab5ea4fa7c5e28a1f66e (diff) | |
download | mate-utils-5ab184661ff38baca3ea2709d81932a578654392.tar.bz2 mate-utils-5ab184661ff38baca3ea2709d81932a578654392.tar.xz |
mate-dict.pc: depend upon proper gtk version
If the package is built against gtk-3.0 (as in
./configure --with-gtk=3.0), mate-dict.pc still wants gtk-2.0
since it's hardcoded it there. This can lead to improper builds
of packages using libmatedict (although I can't find any now),
as well as improper RPM dependencies, like this:
$ rpm -e gtk2-devel
error: Failed dependencies:
...
pkgconfig(gtk+-2.0) is needed by (installed) mate-utils-devel-1.14.0-1gtk3.fc23.x86_64
Fortunately, the file is already generated, so it's trivial to add
a proper substitution.
[v2: also add min GTK version required]
Signed-off-by: Kir Kolyshkin <[email protected]>
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | mate-dictionary/libgdict/mate-dict.pc.in | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 64aba704..39cc6f80 100644 --- a/configure.ac +++ b/configure.ac @@ -89,6 +89,8 @@ case "$with_gtk" in LIBCANBERRA_GTK_REQUIRED=0.4 ;; esac +AC_SUBST(GTK_API_VERSION) +AC_SUBST(GTK_REQUIRED) # common checks PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED) diff --git a/mate-dictionary/libgdict/mate-dict.pc.in b/mate-dictionary/libgdict/mate-dict.pc.in index e409a0cb..8168de2d 100644 --- a/mate-dictionary/libgdict/mate-dict.pc.in +++ b/mate-dictionary/libgdict/mate-dict.pc.in @@ -5,7 +5,7 @@ includedir=@includedir@ Name: gdict-1.0 Description: MATE Dictionary Protocol client library -Requires: gtk+-2.0 +Requires: gtk+-@GTK_API_VERSION@ >= @GTK_REQUIRED@ Version: @GDICT_VERSION@ Libs: -L${libdir} -lmatedict Cflags: -I${includedir}/mate-dict |