Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 30877 | Differences between
and this patch

Collapse All | Expand All

(-)transcode-0.6.11/config.h.in (+5 lines)
Lines 1-3 Link Here
1
#ifndef __CONFIG_H
2
#define __CONFIG_H
3
1
/* config.h.in.  Generated from configure.in by autoheader.  */
4
/* config.h.in.  Generated from configure.in by autoheader.  */
2
5
3
/* Define if your CPU is PPC */
6
/* Define if your CPU is PPC */
Lines 390-392 Link Here
390
393
391
/* Define to `unsigned' if <sys/types.h> does not define. */
394
/* Define to `unsigned' if <sys/types.h> does not define. */
392
#undef size_t
395
#undef size_t
396
397
#endif /* __CONFIG_H */
(-)transcode-0.6.11/ffmpeg/av_config.h (+17 lines)
Lines 1-4 Link Here
1
/* Map transcode configure defines to libavcodecs */
1
/* Map transcode configure defines to libavcodecs */
2
#ifndef __AV_CONFIG_H
3
#define __AV_CONFIG_H
4
5
/* Kludge to see if we had HAVE_MMX defined before we included
6
 * config.h - see below ... */
7
#ifndef HAVE_MMX
8
#define HAD_MMX_FALSE
9
#endif
2
10
3
#include "config.h"
11
#include "config.h"
4
12
Lines 15-20 Link Here
15
#  define ARCH_POWERPC
23
#  define ARCH_POWERPC
16
#endif
24
#endif
17
25
26
/* We use HAVE_MMX, but for ffmpeg the Makefile's set it, so
27
 * unset it here, else ffmpeg use MMX constructs, even if we
28
 * have --disable-mmx */
29
#if defined(HAD_MMX_FALSE) && defined(HAVE_MMX)
30
#undef HAVE_MMX
31
#endif
32
18
#ifdef HAVE_DLOPEN
33
#ifdef HAVE_DLOPEN
19
#  define CONFIG_HAVE_DLOPEN 1
34
#  define CONFIG_HAVE_DLOPEN 1
20
#endif
35
#endif
Lines 44-46 Link Here
44
#define CONFIG_ZLIB 1
59
#define CONFIG_ZLIB 1
45
#define SIMPLE_IDCT 1
60
#define SIMPLE_IDCT 1
46
#define restrict __restrict__
61
#define restrict __restrict__
62
63
#endif /* __AV_CONFIG_H */

Return to bug 30877