/[svn]/linuxsampler/trunk/configure.in
ViewVC logotype

Diff of /linuxsampler/trunk/configure.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 616 by schoenebeck, Sat Jun 4 17:49:12 2005 UTC revision 617 by schoenebeck, Wed Jun 8 21:00:06 2005 UTC
# Line 219  fi Line 219  fi
219    
220  # TODO: should we use AC_ARG_VAR(variable, description) instead?  # TODO: should we use AC_ARG_VAR(variable, description) instead?
221    
222    AC_ARG_ENABLE(asm,
223      [  --disable-asm
224                              Disable hand-crafted assembly optimizations
225                              (default=on). LinuxSampler provides CPU specific
226                              assembly optimizations for the most important
227                              synthesis algorithms. You usually don't want to
228                              diable that.],
229      [config_asm="no"],
230      [config_asm="yes"]
231    )
232    if test "$config_asm" = "yes"; then
233      AC_DEFINE_UNQUOTED(CONFIG_ASM, 1, [Define to 1 if you want to enable hand-crafted asm optimizations.])
234    fi
235    
236  AC_ARG_ENABLE(dev-mode,  AC_ARG_ENABLE(dev-mode,
237    [  --enable-dev-mode    [  --enable-dev-mode
238                            Enable development mode (default=no). In that mode                            Enable development mode (default=no). In that mode
# Line 556  echo "" Line 570  echo ""
570  echo "#####################################################################"  echo "#####################################################################"
571  echo "# LinuxSampler Configuration                                        #"  echo "# LinuxSampler Configuration                                        #"
572  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
573    echo "# Assembly Optimizations: ${config_asm}"
574  echo "# Development Mode: ${config_dev_mode}"  echo "# Development Mode: ${config_dev_mode}"
575  echo "# Debug Level: ${config_debug_level}"  echo "# Debug Level: ${config_debug_level}"
576  echo "# Use Exceptions in RT Context: ${config_rt_exceptions}"  echo "# Use Exceptions in RT Context: ${config_rt_exceptions}"

Legend:
Removed from v.616  
changed lines
  Added in v.617

  ViewVC Help
Powered by ViewVC