From 8e19d7ef868c535c4bf622bd7ab3ff2246ad9f03 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=B6tz=20Lindenmaier?= Date: Wed, 8 Dec 2004 15:12:09 +0000 Subject: [PATCH] fourcc needed in installation, but without firm_config.h [r4606] --- ir/adt/Makefile.in | 4 ++-- ir/adt/fourcc.h | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/ir/adt/Makefile.in b/ir/adt/Makefile.in index 684e25e6d..912e45df5 100644 --- a/ir/adt/Makefile.in +++ b/ir/adt/Makefile.in @@ -16,10 +16,10 @@ topdir = ../.. subdir := ir/adt disable_libiberty := @disable_libiberty@ -INSTALL_HEADERS_ADT = pset.h set.h pmap.h eset.h hashptr.h array.h pdeq.h iterator.h align.h +INSTALL_HEADERS_ADT = pset.h set.h pmap.h eset.h hashptr.h array.h pdeq.h iterator.h align.h fourcc.h SOURCES = Makefile.in \ - array.c fourcc.h obst.h pdeq.c \ + array.c obst.h pdeq.c \ set.c pmap.c eset.c iterator.c xmalloc.h ifeq ($(disable_libiberty),no) diff --git a/ir/adt/fourcc.h b/ir/adt/fourcc.h index f8bc5ffda..a0d9f95d9 100644 --- a/ir/adt/fourcc.h +++ b/ir/adt/fourcc.h @@ -12,13 +12,8 @@ #ifndef _FOURCC_H #define _FOURCC_H -#include "firm_config.h" /* define an always readable fourcc code */ -#ifdef WORDS_BIGENDIAN -#define FOURCC(a,b,c,d) ((d) | ((c) << 8) | ((b) << 16) | ((a) << 24)) -#else #define FOURCC(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24)) -#endif #endif /* _FOURCC_H */ -- 2.20.1