projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a92f7b
)
configure: And fix the GTK check to use the correct pkg-config package name
author
Sebastian Dröge
<sebastian.droege@collabora.co.uk>
Thu, 9 Aug 2012 08:31:39 +0000
(10:31 +0200)
committer
Sebastian Dröge
<sebastian.droege@collabora.co.uk>
Thu, 9 Aug 2012 08:31:39 +0000
(10:31 +0200)
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index 848c92f8feab1c998f5c3781f840c735ba7f1fc9..a3442caf7bf7b32d3ee6897d9a0526e24dfaaa21 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-236,9
+236,9
@@
dnl GTK is optional and used in examples
HAVE_GTK=no
GTK_REQ=3.0.0
if test "x$BUILD_EXAMPLES" = "xyes"; then
- PKG_CHECK_MODULES(GTK, gtk+-
$with_gtk
>= $GTK_REQ, HAVE_GTK=yes, HAVE_GTK=no)
+ PKG_CHECK_MODULES(GTK, gtk+-
3.0
>= $GTK_REQ, HAVE_GTK=yes, HAVE_GTK=no)
dnl some examples need gtk+-x11
- PKG_CHECK_MODULES(GTK_X11, gtk+-x11-
$with_gtk
>= $GTK_REQ, HAVE_GTK_X11=yes, HAVE_GTK_X11=no)
+ PKG_CHECK_MODULES(GTK_X11, gtk+-x11-
3.0
>= $GTK_REQ, HAVE_GTK_X11=yes, HAVE_GTK_X11=no)
AC_SUBST(GTK_LIBS)
AC_SUBST(GTK_CFLAGS)
fi