Changeset 5ba22b


Ignore:
Timestamp:
Mar 28, 2013, 4:19:54 PM (13 years ago)
Author:
Frederik Heber <heber@…>
Children:
d13e27
Parents:
260fca
Message:

vmg's configure checks enable_fcs_[info|debug|timing] and sets internal variables.

  • kudos to Michael Hoffmann.
  • also added some AC_MSG_... to ax_fcs_config.m4 such that enables appear on command-line output.

git-svn-id: https://svn.version.fz-juelich.de/scafacos/trunk@2839 5161e1c8-67bf-11de-9fd5-51895aff932f

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r260fca r5ba22b  
    3131
    3232# several debug output switches
     33AS_IF([test "x$enable_fcs_info" != "x"], [
     34            AC_DEFINE([DEBUG_INFO], [1], [Debugging info output])
     35])
     36
    3337AC_MSG_CHECKING(whether to enable debugging)
    3438AC_ARG_ENABLE([debug],
     
    3640        enable_debug=$enableval,
    3741        enable_debug="no")
     42AS_IF([test "x$enable_fcs_debug" != "x"],[enable_debug="yes"])
    3843AC_MSG_RESULT($enable_debug)
    3944AS_IF([test "$enable_debug" = "yes"], [
     
    5762        enable_debug_output=$enableval,
    5863        enable_debug_output="no")
     64AS_IF([test "x$enable_fcs_debug" != "x"],[enable_debug_output="yes"])
    5965AC_MSG_RESULT($enable_debug_output)
    6066AS_IF([test "$enable_debug_output" = "yes"], [
     
    7480        enable_timer=$enableval,
    7581        enable_timer="no")
     82AS_IF([test "x$enable_fcs_timing" != "x"],[enable_timer="yes"])
    7683AC_MSG_RESULT($enable_timer)
    7784AS_IF([test "$enable_timer" = "yes"], [
     
    8491        enable_timer_output=$enableval,
    8592        enable_timer_output="no")
     93AS_IF([test "x$enable_fcs_timing" != "x"],[enable_timer_output="yes"])
    8694AC_MSG_RESULT($enable_timer_output)
    8795AS_IF([test "$enable_timer_output" = "yes"], [
Note: See TracChangeset for help on using the changeset viewer.