mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 12:10:37 +00:00
move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure they get rebuilt properly
Original commit message from CVS: * configure.ac: * gst-libs/gst/gconf/Makefile.am: * pkgconfig/Makefile.am: move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure they get rebuilt properly * configure.ac: when checking for vorbis, try pkgconfig first. * gst/modplug/gstmodplug.cc: add fixate function
This commit is contained in:
parent
9a78b5acf6
commit
517e5d888c
2 changed files with 23 additions and 6 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2004-03-14 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* gst-libs/gst/gconf/Makefile.am:
|
||||||
|
* pkgconfig/Makefile.am:
|
||||||
|
move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
|
||||||
|
they get rebuilt properly
|
||||||
|
* configure.ac:
|
||||||
|
when checking for vorbis, try pkgconfig first.
|
||||||
|
* gst/modplug/gstmodplug.cc:
|
||||||
|
add fixate function
|
||||||
|
|
||||||
2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2004-03-14 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
|
* gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
|
||||||
|
|
17
configure.ac
17
configure.ac
|
@ -1334,11 +1334,16 @@ dnl *** vorbis ***
|
||||||
dnl AM_PATH_VORBIS only takes two options
|
dnl AM_PATH_VORBIS only takes two options
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
|
||||||
GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
|
GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
|
||||||
XIPH_PATH_VORBIS(HAVE_VORBIS=yes, HAVE_VORBIS=no)
|
PKG_CHECK_MODULES(VORBIS, vorbis >= 1.0 vorbisenc >= 1.0, [
|
||||||
AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
|
HAVE_VORBIS="yes"
|
||||||
|
], [
|
||||||
|
XIPH_PATH_VORBIS(HAVE_VORBIS="yes", HAVE_VORBIS="no")
|
||||||
|
AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
|
||||||
|
])
|
||||||
])
|
])
|
||||||
if test "x$HAVE_VORBIS" = "xyes"; then
|
if test "x$HAVE_VORBIS" = "xyes"; then
|
||||||
ac_cflags_save="$CFLAGS"
|
ac_cflags_save="$CFLAGS"
|
||||||
|
dnl FIXME: does this work on non-gcc? -- Company
|
||||||
CFLAGS="-Wall -Werror"
|
CFLAGS="-Wall -Werror"
|
||||||
AC_COMPILE_IFELSE(
|
AC_COMPILE_IFELSE(
|
||||||
AC_LANG_PROGRAM([
|
AC_LANG_PROGRAM([
|
||||||
|
@ -1567,14 +1572,14 @@ dnl #########################
|
||||||
|
|
||||||
AC_CONFIG_FILES(
|
AC_CONFIG_FILES(
|
||||||
Makefile
|
Makefile
|
||||||
|
pkgconfig/gstreamer-gconf.pc
|
||||||
|
pkgconfig/gstreamer-gconf-uninstalled.pc
|
||||||
|
pkgconfig/gstreamer-interfaces.pc
|
||||||
|
pkgconfig/gstreamer-interfaces-uninstalled.pc
|
||||||
pkgconfig/gstreamer-libs.pc
|
pkgconfig/gstreamer-libs.pc
|
||||||
pkgconfig/gstreamer-libs-uninstalled.pc
|
pkgconfig/gstreamer-libs-uninstalled.pc
|
||||||
pkgconfig/gstreamer-play.pc
|
pkgconfig/gstreamer-play.pc
|
||||||
pkgconfig/gstreamer-play-uninstalled.pc
|
pkgconfig/gstreamer-play-uninstalled.pc
|
||||||
pkgconfig/gstreamer-interfaces.pc
|
|
||||||
pkgconfig/gstreamer-interfaces-uninstalled.pc
|
|
||||||
gst-libs/gst/gconf/gstreamer-gconf.pc
|
|
||||||
gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc
|
|
||||||
gst-plugins.spec
|
gst-plugins.spec
|
||||||
gst/Makefile
|
gst/Makefile
|
||||||
gst/ac3parse/Makefile
|
gst/ac3parse/Makefile
|
||||||
|
|
Loading…
Reference in a new issue