diff options
Diffstat (limited to 'configure.ac.pamphlet')
-rw-r--r-- | configure.ac.pamphlet | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac.pamphlet b/configure.ac.pamphlet index cd261735..6171bd23 100644 --- a/configure.ac.pamphlet +++ b/configure.ac.pamphlet @@ -207,6 +207,8 @@ is currently written. We ask for a POSIX or ISO C semantics, though we have a strong preference for POSIX-conformant semantics. <<C headers and libraries>>= +AC_CHECK_HEADERS([stdint.h inttypes.h]) +AC_TYPE_UINT8_T AC_CHECK_HEADERS([signal.h], [], [AC_MSG_ERROR([OpenAxiom needs signal support.])]) @@ -1101,7 +1103,7 @@ information: <<Autoconf init>>= sinclude(config/open-axiom.m4) sinclude(config/aclocal.m4) -AC_INIT([OpenAxiom], [1.2.0-2008-04-24], +AC_INIT([OpenAxiom], [1.2.0-2008-04-27], [open-axiom-bugs@lists.sf.net]) @ @@ -1119,11 +1121,11 @@ can collect, in a single file, variabilities in operating system API in form of C preprocessor macros. That file is for the most part automatically generated by \Tool{Autoheader}. <<Autoconf init>>= -AC_CONFIG_HEADERS([config/axiom-c-macros.h]) +AC_CONFIG_HEADERS([config/openaxiom-c-macros.h]) @ Note that at configuration time, \Tool{configure} will instantiate a -file \File{config/axiom-c-macros.h} in the directory [[$(top_builddir)]], +file \File{config/openaxiom-c-macros.h} in the directory [[$(top_builddir)]], appropriate for all C sub-parts of \Tool{OpenAxiom} to include. |