mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
11e8ef9074
Original commit message from CVS: More work towards a powerPC port, and towards generic portability.
16 lines
301 B
C
16 lines
301 B
C
#ifndef GST_HGUARD_GSTARCH_H
|
|
#define GST_HGUARD_GSTARCH_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef HAVE_CPU_I386
|
|
#include "gsti386.h"
|
|
#else
|
|
#ifdef HAVE_CPU_PPC
|
|
#include "gstppc.h"
|
|
#else
|
|
#error Need to know about this architecture, or have a generic implementation
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* GST_HGUARD_GSTARCH_H */
|