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

Diff of /linuxsampler/trunk/configure.ac

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

revision 677 by schoenebeck, Thu Jun 23 22:44:59 2005 UTC revision 685 by persson, Tue Jul 5 19:30:37 2005 UTC
# Line 225  AC_ARG_ENABLE(asm, Line 225  AC_ARG_ENABLE(asm,
225                            (default=on). LinuxSampler provides CPU specific                            (default=on). LinuxSampler provides CPU specific
226                            assembly optimizations for the most important                            assembly optimizations for the most important
227                            synthesis algorithms. You usually don't want to                            synthesis algorithms. You usually don't want to
228                            diable that.],                            disable that.],
229    [config_asm="no"],    [config_asm="no"],
230    [config_asm="yes"]    [config_asm="yes"]
231  )  )
# Line 554  AM_INIT_AUTOMAKE(linuxsampler, 0.3.2) Line 554  AM_INIT_AUTOMAKE(linuxsampler, 0.3.2)
554  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
555  AC_PROG_CXX  AC_PROG_CXX
556    
557    # some gcc 4.0 versions need -msse for SSE register allocations
558    if test "$config_asm" = "yes"; then
559      if test "$def_arch_x86" = 1; then
560        CXXFLAGS="$CXXFLAGS -msse"
561      fi
562    fi
563    
564  # autoconf 2.59/libtool 1.5.12 bug? work-around. Without a check like  # autoconf 2.59/libtool 1.5.12 bug? work-around. Without a check like
565  # this, the dlfcn.h check in am_prog_libtool may fail.  # this, the dlfcn.h check in am_prog_libtool may fail.
566  AC_CHECK_HEADER(stdlib.h)  AC_CHECK_HEADER(stdlib.h)

Legend:
Removed from v.677  
changed lines
  Added in v.685

  ViewVC Help
Powered by ViewVC