diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac index 701bd99..e007335 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ #========================================================================= # Toplevel configure.ac for the Modular C++ Build System #========================================================================= -# Please read the documenation in 'mcppbs-doc.txt' for more details on +# Please read the documentation in 'mcppbs-doc.txt' for more details on # how the Modular C++ Build System works. For most new projects, a # developer will only need to make the following changes: # @@ -36,21 +36,21 @@ m4_define( proj_version, [?]) # Setup #------------------------------------------------------------------------- -AC_INIT(proj_name,proj_version,proj_maintainer,proj_abbreviation) -AC_LANG_CPLUSPLUS +AC_INIT([proj_name],[proj_version],[proj_maintainer],[proj_abbreviation]) +AC_LANG([C++]) AC_CONFIG_SRCDIR([riscv/common.h]) AC_CONFIG_AUX_DIR([scripts]) AC_CANONICAL_BUILD AC_CANONICAL_HOST -m4_include(ax_require_defined.m4) -m4_include(ax_append_flag.m4) -m4_include(ax_check_compile_flag.m4) -m4_include(ax_check_link_flag.m4) -m4_include(ax_append_link_flags.m4) -m4_include(ax_boost_base.m4) -m4_include(ax_boost_asio.m4) -m4_include(ax_boost_regex.m4) +m4_include(m4/ax_require_defined.m4) +m4_include(m4/ax_append_flag.m4) +m4_include(m4/ax_check_compile_flag.m4) +m4_include(m4/ax_check_link_flag.m4) +m4_include(m4/ax_append_link_flags.m4) +m4_include(m4/ax_boost_base.m4) +m4_include(m4/ax_boost_asio.m4) +m4_include(m4/ax_boost_regex.m4) #------------------------------------------------------------------------- # Checks for programs @@ -76,12 +76,6 @@ AC_C_BIGENDIAN MCPPBS_PROG_INSTALL #------------------------------------------------------------------------- -# Checks for header files -#------------------------------------------------------------------------- - -AC_HEADER_STDC - -#------------------------------------------------------------------------- # Checks for type #------------------------------------------------------------------------- |