diff options
author | Benjamin Otte <otte@gnome.org> | 2004-02-03 02:40:15 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-02-03 02:40:15 +0000 |
commit | 1830ee943689e1ef618eb03c55228864ef624db4 (patch) | |
tree | 3c5697f057fbbc19bba9ffbd82b894a2df3eef29 | |
parent | 777c04662b096664c95dc78d72a7c56fa573f881 (diff) | |
download | gst-plugins-bad-1830ee943689e1ef618eb03c55228864ef624db4.tar.gz gst-plugins-bad-1830ee943689e1ef618eb03c55228864ef624db4.tar.bz2 gst-plugins-bad-1830ee943689e1ef618eb03c55228864ef624db4.zip |
co/: add AX_CREATE_STDINT_H to get correct type definitions for a52dec in _stdint.h.
Original commit message from CVS:
2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
* common/m4/ax_create_stdint_h.m4:
* configure.ac:
add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
_stdint.h.
* Makefile.am:
remove generated _stdint.h in DISTCLEANFILES
* ext/a52dec/gsta52dec.c:
include _stdint.h for a52dec. (should fix #133064)
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 1 |
4 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,14 @@ +2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de> + + * common/m4/ax_create_stdint_h.m4: + * configure.ac: + add AX_CREATE_STDINT_H to get correct type definitions for a52dec in + _stdint.h. + * Makefile.am: + remove generated _stdint.h in DISTCLEANFILES + * ext/a52dec/gsta52dec.c: + include _stdint.h for a52dec. (should fix #133064) + 2004-02-02 Jeremy Simon <jesimon@libertysurf.fr> * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add), diff --git a/Makefile.am b/Makefile.am index db020efa..97ba31f2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -38,6 +38,8 @@ EXTRA_DIST=gst-plugins.spec depcomp \ AUTHORS COPYING COPYING.LIB README RELEASE REQUIREMENTS \ ChangeLog autogen.sh common m4 +DISTCLEANFILES=_stdint.h + dist-hook: rm -rf `find $(distdir)/common -name CVS` rm -rf `find $(distdir)/m4 -name CVS` diff --git a/common b/common -Subproject 508678c12ea745e207eb8bb3be12c156e3bb698 +Subproject ab32709acc23a4a1b458823fd09432733240803 diff --git a/configure.ac b/configure.ac index a1c697c4..3c114481 100644 --- a/configure.ac +++ b/configure.ac @@ -82,6 +82,7 @@ AC_ISC_POSIX AC_HEADER_STDC([]) AC_C_INLINE +AX_CREATE_STDINT_H dnl Check for a way to display the function name in debug output GST_CHECK_FUNCTION() |