mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
fix gettext/automake problem fix underquoted macros
Original commit message from CVS: fix gettext/automake problem fix underquoted macros
This commit is contained in:
parent
e7995531e7
commit
5d34227e95
3 changed files with 31 additions and 3 deletions
28
ChangeLog
28
ChangeLog
|
@ -1,3 +1,31 @@
|
|||
2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* common/m4/as-ac-expand.m4:
|
||||
* common/m4/as-auto-alt.m4:
|
||||
* common/m4/as-compiler-flag.m4:
|
||||
* common/m4/as-compiler.m4:
|
||||
* common/m4/as-docbook.m4:
|
||||
* common/m4/as-libtool.m4:
|
||||
* common/m4/as-scrub-include.m4:
|
||||
* common/m4/as-version.m4:
|
||||
* common/m4/glib-gettext.m4:
|
||||
* common/m4/gst-arch.m4:
|
||||
* common/m4/gst-debuginfo.m4:
|
||||
* common/m4/gst-doc.m4:
|
||||
* common/m4/gst-feature.m4:
|
||||
* common/m4/gst-function.m4:
|
||||
* common/m4/gst-glib2.m4:
|
||||
* common/m4/gst-gstreamer.m4:
|
||||
* common/m4/gst-libxml2.m4:
|
||||
* common/m4/gst-makecontext.m4:
|
||||
* common/m4/gst-mcsc.m4:
|
||||
* common/m4/pkg.m4:
|
||||
* gst-element-check.m4:
|
||||
fix underquoted macros as reported by automake 1.8.x (#133800)
|
||||
* configure.ac:
|
||||
require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
|
||||
by autopoint (fixes #132996)
|
||||
|
||||
2004-02-10 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit b5c08bab6ea94411e1a6fa124546f374d15582a8
|
||||
Subproject commit 0ad93d3738d8d3f43482073d5d2ef372dfb41fa7
|
|
@ -33,14 +33,14 @@ AC_CONFIG_SRCDIR([gst/gst.c])
|
|||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
dnl Add parameters for aclocal
|
||||
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
|
||||
AC_SUBST(ACLOCAL_AMFLAGS, "-I common/m4")
|
||||
|
||||
AM_PROG_CC_STDC
|
||||
AM_PROG_AS
|
||||
AS="${CC}"
|
||||
|
||||
dnl the gettext stuff needed
|
||||
AM_GNU_GETTEXT_VERSION(0.11.4)
|
||||
AM_GNU_GETTEXT_VERSION(0.11.5)
|
||||
AM_GNU_GETTEXT([external])
|
||||
|
||||
GETTEXT_PACKAGE=gstreamer-$GST_VERSION_MAJOR.$GST_VERSION_MINOR
|
||||
|
|
Loading…
Reference in a new issue