X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=configure.ac;h=57e4c0f8834dfbe0063d6ca08d02115c19ecd956;hb=9b093e4573159587f5d62b0222920febb49e3ed7;hp=d23c4f7eb1e69d555a6540a38b31e82eb53eee6d;hpb=b2bc749a070c19f486cde1f847ad4c4e08194a00;p=libfirm diff --git a/configure.ac b/configure.ac index d23c4f7eb..57e4c0f88 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,6 @@ dnl configure.ac file for libfirm, author Matthias Braun dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.60]) -AC_REVISION([$Id$]) dnl Firm Versions dnl * Increment major/minor/micro version as you see fit. These 3 numbers @@ -30,7 +29,9 @@ m4_define([lt_release], [firm_major_version]) AC_INIT([libfirm], [firm_version], [firm@ipd.info.uni-karlsruhe.de]) AC_CONFIG_SRCDIR([ir/common/firm.c]) -AM_INIT_AUTOMAKE([foreign dist-bzip2 1.9]) +AM_INIT_AUTOMAKE([foreign dist-bzip2 silent-rules 1.11]) + +AM_SILENT_RULES([yes]) AC_DEFINE([libfirm_VERSION_MAJOR], [firm_major_version], [Firms major version number]) AC_DEFINE([libfirm_VERSION_MINOR], [firm_minor_version], [Firms minor version number]) @@ -51,6 +52,8 @@ AC_CONFIG_HEADER([config.h]) AC_DEFINE([FIRM_BUILD], [], [Defined when firm library is built]) AC_DEFINE([FIRM_DLL], [], [Define when a dynamically loadable shared library is built]) +AC_CONFIG_MACRO_DIR([m4]) + dnl Package options dnl =============== @@ -79,24 +82,6 @@ if test "$enable_assert" = no; then fi AC_SUBST([enable_assert]) -dnl enable ILP solver support -dnl -------------------------------- -AC_ARG_ENABLE([ilp], -[AS_HELP_STRING([--enable-ilp], [enable ilp solver])], -[enable_ilp="$enableval"], [enable_ilp="no"]) - -if test "$enable_ilp" = yes; then - AC_DEFINE([WITH_ILP], [], [enable to build code using ilp solvers]) -fi - -dnl disable backend -dnl --------------- -AC_ARG_ENABLE([backend], -[AS_HELP_STRING([--disable-backend], [disable backends])], -[enable_backend="$enableval"], [enable_backend="yes"]) - -AC_SUBST(enable_backend) - dnl Checks for programs. dnl ==================== @@ -148,20 +133,4 @@ AC_CONFIG_FILES([ libfirm.pc ]) -BACKENDS="" -if test "$enable_backend" = yes; then - BACKENDS="arm ia32 sparc amd64" -fi -AC_SUBST([BACKENDS]) - AC_OUTPUT - -dnl output summary of firm configuration -echo "" -echo "firm configuration summary:" -echo " backends $BACKENDS" -echo " profiling $enable_profile_libfirm" -echo " debug/verifiers $enable_debug_libfirm" -echo " assertions $enable_assert" -echo " ilp $enable_ilp" -echo ""