gstreamer/gst/gstarch.h
Richard Boulton 968b5acaa1 Fix on x86 architectures - was just checking for 386, D'oh.
Original commit message from CVS:
Fix on x86 architectures - was just checking for 386, D'oh.
Fix autogen to run autoheader _before_ autoconf, since it generates a
required file (config.h.in, which I just removed from CVS since its an
autogenerated one).  Also fix messed up variables in gst/Makefile.am
2000-09-15 23:04:31 +00:00

17 lines
300 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
#warn Need to know about this architecture, or have a generic implementation
#endif
#endif
#endif /* GST_HGUARD_GSTARCH_H */