GNOME Bugzilla – Bug 330266
libavutil Makefile INCLUDES missing ALTIVEC_CFLAGS
Last modified: 2006-02-07 14:35:49 UTC
Both the 0.8 and 0.10 branches of gst-ffmpeg require the patch shown below in order to compile using gcc-3.4.4 on a PPC that supports alitivec. [see the other Makefiles in subdirectories of gst-libs/ext/ffmpeg] -Joseph =============================================================================== --- gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.am- 2006-02-06 22:18:21.000000000 -0500 +++ gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.am 2006-02-06 22:17:20.000000000 -0500 @@ -2,7 +2,8 @@ -I$(top_srcdir)/libavcodec \ -DHAVE_AV_CONFIG_H=1 \ $(GPROF_FLAGS) \ - $(WARNERR_FLAGS) + $(WARNERR_FLAGS) \ + $(ALTIVEC_CFLAGS) LDADD = \ $(GPROF_FLAGS) \ --- gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.in- 2006-02-06 22:18:33.000000000 -0500 +++ gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.in 2006-02-06 22:17:00.000000000 -0500 @@ -565,7 +565,8 @@ -I$(top_srcdir)/libavcodec \ -DHAVE_AV_CONFIG_H=1 \ $(GPROF_FLAGS) \ - $(WARNERR_FLAGS) + $(WARNERR_FLAGS) \ + $(ALTIVEC_CFLAGS) LDADD = \ $(GPROF_FLAGS) \
This is already fixed in gst-ffmpeg 0.10/0.8 cvs (in fact it's fixed in the ffmpeg mirror we use with gst-ffmpeg).
Edward, Great!!! -Joseph
*** This bug has been marked as a duplicate of 320238 ***