mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Ported pngenc , still have to port pngdec...
Original commit message from CVS: * configure.ac: * ext/Makefile.am: * ext/libpng/Makefile.am: * ext/libpng/gstpng.c: * ext/libpng/gstpngenc.c: Ported pngenc , still have to port pngdec...
This commit is contained in:
parent
7dbc2c9d14
commit
98a4ca11a5
3 changed files with 24 additions and 4 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2005-08-02 Edward Hervey <edward@fluendo.com>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* ext/Makefile.am:
|
||||||
|
* ext/libpng/Makefile.am:
|
||||||
|
* ext/libpng/gstpng.c:
|
||||||
|
* ext/libpng/gstpngenc.c:
|
||||||
|
Ported pngenc , still have to port pngdec...
|
||||||
|
|
||||||
2005-08-01 Stefan Kost <ensonic@users.sf.net>
|
2005-08-01 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
reviewed by: <delete if not using a buddy>
|
reviewed by: <delete if not using a buddy>
|
||||||
|
|
11
configure.ac
11
configure.ac
|
@ -519,6 +519,16 @@ GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink, [
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
|
dnl *** libpng ***
|
||||||
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
|
||||||
|
GST_CHECK_FEATURE(LIBPNG, [libpng PNG encoder], pngenc, [
|
||||||
|
PKG_CHECK_MODULES(LIBPNG, libpng12, HAVE_LIBPNG="yes", HAVE_LIBPNG="no")
|
||||||
|
AC_SUBST(LIBPNG_CFLAGS)
|
||||||
|
AC_SUBST(LIBPNG_LIBS)
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dnl also add builddir include for enumtypes and marshal
|
dnl also add builddir include for enumtypes and marshal
|
||||||
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR"
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR"
|
||||||
|
|
||||||
|
@ -600,6 +610,7 @@ ext/aalib/Makefile
|
||||||
ext/dv/Makefile
|
ext/dv/Makefile
|
||||||
ext/gconf/Makefile
|
ext/gconf/Makefile
|
||||||
ext/libcaca/Makefile
|
ext/libcaca/Makefile
|
||||||
|
ext/libpng/Makefile
|
||||||
ext/mad/Makefile
|
ext/mad/Makefile
|
||||||
ext/raw1394/Makefile
|
ext/raw1394/Makefile
|
||||||
ext/shout2/Makefile
|
ext/shout2/Makefile
|
||||||
|
|
|
@ -208,11 +208,11 @@ LIBFAME_DIR=
|
||||||
LIBMNG_DIR=
|
LIBMNG_DIR=
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if USE_LIBPNG
|
if USE_LIBPNG
|
||||||
# LIBPNG_DIR=libpng
|
LIBPNG_DIR=libpng
|
||||||
# else
|
else
|
||||||
LIBPNG_DIR=
|
LIBPNG_DIR=
|
||||||
# endif
|
endif
|
||||||
|
|
||||||
# if USE_POLYP
|
# if USE_POLYP
|
||||||
# POLYP_DIR=polyp
|
# POLYP_DIR=polyp
|
||||||
|
|
Loading…
Reference in a new issue