mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
Added GdkPixbuf support and scaling (sloww...)
Original commit message from CVS: Added GdkPixbuf support and scaling (sloww...)
This commit is contained in:
parent
a14849fea8
commit
2810e739f6
1 changed files with 10 additions and 0 deletions
10
configure.in
10
configure.in
|
@ -63,6 +63,16 @@ XML_CFLAGS=`xml-config --cflags`
|
||||||
AC_SUBST(XML_LIBS)
|
AC_SUBST(XML_LIBS)
|
||||||
AC_SUBST(XML_CFLAGS)
|
AC_SUBST(XML_CFLAGS)
|
||||||
|
|
||||||
|
dnl Check for libgdb-pixbuf
|
||||||
|
AC_PATH_PROG(GDK_PIXBUF_CONFIG, gdk-pixbuf-config, no)
|
||||||
|
if test x$GDK_PIXBUF_CONFIG = xno; then
|
||||||
|
AC_MSG_ERROR(Couldn't find gdk-pixbuf-config)
|
||||||
|
fi
|
||||||
|
GDK_PIXBUF_LIBS=`gdk-pixbuf-config --libs`
|
||||||
|
GDK_PIXBUF_CFLAGS=`gdk-pixbuf-config --cflags`
|
||||||
|
AC_SUBST(GDK_PIXBUF_LIBS)
|
||||||
|
AC_SUBST(GDK_PIXBUF_CFLAGS)
|
||||||
|
|
||||||
|
|
||||||
dnl Next, check for the optional libraries:
|
dnl Next, check for the optional libraries:
|
||||||
dnl =======================================
|
dnl =======================================
|
||||||
|
|
Loading…
Reference in a new issue