From 89376b7141edb6f927fb940c27391cda6e67c785 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 19 Feb 2009 19:55:40 +0000 Subject: Initial import. --- config.h.in | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 config.h.in (limited to 'config.h.in') diff --git a/config.h.in b/config.h.in new file mode 100644 index 0000000..e7ec2ae --- /dev/null +++ b/config.h.in @@ -0,0 +1,48 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Whether BSP_commandline_string is declared in */ +#undef DECL_BSP_COMMANDLINE_STRING + +/* Define to 1 if you have the `BSP_commandline_string' function. */ +#undef HAVE_BSP_COMMANDLINE_STRING + +/* Whether CEXP is installed */ +#undef HAVE_CEXP + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + + +#ifndef RTEMS_VERSION_LATER_THAN +#define RTEMS_VERSION_LATER_THAN(ma,mi,re) \ + ( __RTEMS_MAJOR__ > (ma) \ + || (__RTEMS_MAJOR__ == (ma) && __RTEMS_MINOR__ > (mi)) \ + || (__RTEMS_MAJOR__ == (ma) && __RTEMS_MINOR__ == (mi) && __RTEMS_REVISION__ > (re)) \ + ) +#endif +#ifndef RTEMS_VERSION_ATLEAST +#define RTEMS_VERSION_ATLEAST(ma,mi,re) \ + ( __RTEMS_MAJOR__ > (ma) \ + || (__RTEMS_MAJOR__ == (ma) && __RTEMS_MINOR__ > (mi)) \ + || (__RTEMS_MAJOR__ == (ma) && __RTEMS_MINOR__ == (mi) && __RTEMS_REVISION__ >= (re)) \ + ) +#endif + + +/* Version number of package */ +#undef VERSION -- cgit v1.2.3