From ac4febaf773e4a23efa50c56b88d041f32bcae97 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Fri, 11 Jun 2010 22:37:48 -0700 Subject: [PATCH] revert removal of orc-stdint.h Turns out this is part of the API. Oops. --- configure.ac | 2 ++ orc/Makefile.am | 5 +++++ orc/orc.h | 1 + 3 files changed, 8 insertions(+) diff --git a/configure.ac b/configure.ac index a120c96..93cea8f 100644 --- a/configure.ac +++ b/configure.ac @@ -43,6 +43,8 @@ AS_HOST_DEFINES() AC_C_BIGENDIAN +AX_CREATE_STDINT_H([orc/orc-stdint.h]) + AC_FUNC_MMAP() AC_CHECK_HEADERS([inttypes.h]) diff --git a/orc/Makefile.am b/orc/Makefile.am index 7c4a304..1ad75bc 100644 --- a/orc/Makefile.am +++ b/orc/Makefile.am @@ -84,6 +84,11 @@ pkginclude_HEADERS = \ orcpowerpc.h \ orcarm.h +nodist_pkginclude_HEADERS = orc-stdint.h + +DISTCLEANFILES = orc-stdint.h + + orcfunctions: $(top_builddir)/tools/orcc$(EXEEXT) --implementation -o orcfunctions.c orcfunctions.orc $(top_builddir)/tools/orcc$(EXEEXT) --header -o orcfunctions.h orcfunctions.orc diff --git a/orc/orc.h b/orc/orc.h index d6e8bc6..3f711be 100644 --- a/orc/orc.h +++ b/orc/orc.h @@ -3,6 +3,7 @@ #define _ORC_ORC_H_ #include +#include #include #include #include -- 2.7.4