/[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 654 by schoenebeck, Wed Jun 15 20:25:25 2005 UTC revision 838 by schoenebeck, Fri Feb 10 14:57:40 2006 UTC
# Line 1  Line 1 
1  AC_INIT(configure.in)  AC_INIT(configure.in)
2    
3    #------------------------------------------------------------------------------------
4    # LinuxSampler's / liblinuxsampler's "official" release version:
5    
6    LINUXSAMPLER_RELEASE_MAJOR=0
7    LINUXSAMPLER_RELEASE_MINOR=3
8    LINUXSAMPLER_RELEASE_BUILD=3cvs
9    
10    #------------------------------------------------------------------------------------
11    # The following is the libtool / shared library version. This doesn't have to
12    # do anything with the release version. It MUST conform to the following rules:
13    #
14    #  1. Start with version information of `0:0:0' for each libtool library.
15    #  2. Update the version information only immediately before a public release of
16    #     your software. More frequent updates are unnecessary, and only guarantee
17    #     that the current interface number gets larger faster.
18    #  3. If the library source code has changed at all since the last update, then
19    #     increment revision (`c:r:a' becomes `c:r+1:a').
20    #  4. If any interfaces have been added, removed, or changed since the last update,
21    #     increment current, and set revision to 0.
22    #  5. If any interfaces have been added since the last public release, then increment
23    #     age.
24    #  6. If any interfaces have been removed since the last public release, then set age
25    #     to 0.
26    
27    LIBLINUXSAMPLER_LT_CURRENT=0
28    LIBLINUXSAMPLER_LT_REVISION=0
29    LIBLINUXSAMPLER_LT_AGE=0
30    SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE"
31    
32    AM_PROG_LIBTOOL
33    
34    AC_SUBST(SHLIB_VERSION_ARG)
35    AC_SUBST(SHARED_VERSION_INFO)
36    
37  AC_C_BIGENDIAN  AC_C_BIGENDIAN
38  AC_CANONICAL_SYSTEM  AC_CANONICAL_SYSTEM
39    
# Line 24  esac Line 59  esac
59  AC_DEFINE_UNQUOTED(ARCH_X86,$def_arch_x86,[Define to 1 if you build for x86 architecture.])  AC_DEFINE_UNQUOTED(ARCH_X86,$def_arch_x86,[Define to 1 if you build for x86 architecture.])
60    
61  # determine the right gcc switch for CPU specific optimizations  # determine the right gcc switch for CPU specific optimizations
62    # (only if the user did not provide one)
63  CXX_CPU_SWITCH=  CXX_CPU_SWITCH=
64  if test "$def_arch_x86" = 1; then  if ! echo "X $CXXFLAGS " | grep -q -- " \(-march=\|-mcpu=\|-mtune=\|-arch=\)" ; then
65    CXX_CPU_SWITCH="-march=$target_cpu"    if test "$def_arch_x86" = 1; then
66  elif test "$target_cpu" = "powerpc"; then      CXX_CPU_SWITCH="-march=$target_cpu"
67    CXX_CPU_SWITCH="-arch=$target_cpu"    elif test "$target_cpu" = "powerpc"; then
68        CXX_CPU_SWITCH="-arch=$target_cpu"
69      fi
70  fi  fi
71  AC_SUBST([CXX_CPU_SWITCH])  AC_SUBST([CXX_CPU_SWITCH])
72    
# Line 64  if test "$have_unix98" = "no"; then Line 102  if test "$have_unix98" = "no"; then
102      fi      fi
103  fi  fi
104    
105    # check for <features.h>
106    AC_CHECK_HEADERS(features.h)
107    
108  # Checks for available audio and MIDI systems / drivers  # Checks for available audio and MIDI systems / drivers
109  # (we throw an error if there's not at least one system for audio output and MIDI input available)  # (we throw an error if there's not at least one system for audio output and MIDI input available)
110  have_midi_input_driver="false"  have_midi_input_driver="false"
# Line 150  fi Line 191  fi
191  AM_CONDITIONAL(HAVE_JACK, test $HAVE_JACK = 1)  AM_CONDITIONAL(HAVE_JACK, test $HAVE_JACK = 1)
192  AC_DEFINE_UNQUOTED(HAVE_JACK,$HAVE_JACK,[Define to 1 if you have JACK installed.])  AC_DEFINE_UNQUOTED(HAVE_JACK,$HAVE_JACK,[Define to 1 if you have JACK installed.])
193    
194    # ARTS
195    sinclude([m4/arts.m4])
196    AM_PATH_ARTS(0.9.5, have_arts=1, have_arts=0)
197    if test "$have_arts" = "1"; then
198        have_audio_output_driver="true"
199    fi
200    AM_CONDITIONAL(HAVE_ARTS, test "$have_arts" = "1")
201    AC_DEFINE_UNQUOTED(HAVE_ARTS,$have_arts,[Define to 1 if you have aRts installed.])
202    
203  # MidiShare (Linux, OS X, Windows)  # MidiShare (Linux, OS X, Windows)
204  AC_CHECK_HEADER(MidiShare.h,  AC_CHECK_HEADER(MidiShare.h,
205      AC_CHECK_LIB(MidiShare, MidiCountEvs,      AC_CHECK_LIB(MidiShare, MidiCountEvs,
# Line 177  AM_CONDITIONAL(HAVE_COREMIDI, test $have Line 227  AM_CONDITIONAL(HAVE_COREMIDI, test $have
227  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])  AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])
228    
229  # Check presence of libgig  # Check presence of libgig
230  libgig_version="2.0.1"  libgig_version="2.0.2"
231  PKG_CHECK_MODULES(GIG, gig >= $libgig_version, HAVE_GIG=true, HAVE_GIG=false)  PKG_CHECK_MODULES(GIG, gig >= $libgig_version, HAVE_GIG=true, HAVE_GIG=false)
232  if test "$HAVE_GIG" = "false"; then  if test "$HAVE_GIG" = "false"; then
233      echo "Required libgig version not found!"      echo "Required libgig version not found!"
234      echo "You need to have libgig version ${libgig_version} installed!"      echo "You need to have libgig version ${libgig_version} installed!"
235      exit -1;      exit -1;
236    else
237        echo "yes, found libgig $libgig_version"
238  fi  fi
239  AC_SUBST(GIG_CFLAGS)  AC_SUBST(GIG_CFLAGS)
240  AC_SUBST(GIG_LIBS)  AC_SUBST(GIG_LIBS)
# Line 193  AC_SUBST(SQLITE3_LIBS) Line 245  AC_SUBST(SQLITE3_LIBS)
245  AC_SUBST(SQLITE3_CFLAGS)  AC_SUBST(SQLITE3_CFLAGS)
246  if test $HAVE_SQLITE3 = false; then  if test $HAVE_SQLITE3 = false; then
247      HAVE_SQLITE3=0;      HAVE_SQLITE3=0;
248        echo "no, support for instrument DB will be disabled!"
249  else  else
250      HAVE_SQLITE3=1      HAVE_SQLITE3=1
251        echo "yes"
252  fi  fi
253  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)
254  AC_DEFINE_UNQUOTED(HAVE_SQLITE3,$HAVE_SQLITE3,[Define to 1 if you have SQLITE3 installed.])  AC_DEFINE_UNQUOTED(HAVE_SQLITE3,$HAVE_SQLITE3,[Define to 1 if you have SQLITE3 installed.])
# Line 220  fi Line 274  fi
274  # TODO: should we use AC_ARG_VAR(variable, description) instead?  # TODO: should we use AC_ARG_VAR(variable, description) instead?
275    
276  AC_ARG_ENABLE(asm,  AC_ARG_ENABLE(asm,
277    [  --disable-asm    [  --enable-asm
278                            Disable hand-crafted assembly optimizations                            Enable hand-crafted assembly optimizations
279                            (default=on). LinuxSampler provides CPU specific                            (default=off). LinuxSampler provides CPU specific
280                            assembly optimizations for the most important                            assembly optimizations for the most important
281                            synthesis algorithms. You usually don't want to                            synthesis algorithms. This is currently disabled
282                            diable that.],                            by default since current asm code is broken.],
283    [config_asm="no"],    [config_asm="yes"],
284    [config_asm="yes"]    [config_asm="no"]
285  )  )
286  if test "$config_asm" = "yes"; then  if test "$config_asm" = "yes"; then
287    AC_DEFINE_UNQUOTED(CONFIG_ASM, 1, [Define to 1 if you want to enable hand-crafted asm optimizations.])    AC_DEFINE_UNQUOTED(CONFIG_ASM, 1, [Define to 1 if you want to enable hand-crafted asm optimizations.])
288  fi  fi
289    
290  AC_ARG_ENABLE(dev-mode,  AC_ARG_ENABLE(dev-mode,
291    [  --enable-dev-mode    [  --disable-dev-mode
292                            Enable development mode (default=no). In that mode                            Disable development mode (default=on). In that mode
293                            we do some extra sanity checks here and there.                            we do some extra sanity checks here and there.
294                            This helps to spot possible problems, but reduces                            This helps to spot possible problems, but reduces
295                            efficiency a bit],                            efficiency a bit],
296    [config_dev_mode="yes"],    [config_dev_mode="no"],
297    [config_dev_mode="no"]    [config_dev_mode="yes"]
298  )  )
299  if test "$config_dev_mode" = "yes"; then  if test "$config_dev_mode" = "yes"; then
300    AC_DEFINE_UNQUOTED(CONFIG_DEVMODE, 1, [Define to 1 if you want to enable development mode.])    AC_DEFINE_UNQUOTED(CONFIG_DEVMODE, 1, [Define to 1 if you want to enable development mode.])
# Line 397  AC_ARG_ENABLE(max-voices, Line 451  AC_ARG_ENABLE(max-voices,
451  )  )
452  AC_DEFINE_UNQUOTED(CONFIG_MAX_VOICES, $config_max_voices, [Define max. voices.])  AC_DEFINE_UNQUOTED(CONFIG_MAX_VOICES, $config_max_voices, [Define max. voices.])
453    
454    AC_ARG_ENABLE(subfragment-size,
455      [  --enable-subfragment-size
456                              Every audio fragment will be splitted into
457                              subfragments. Where each subfragment renders
458                              audio with constant synthesis parameters. This is
459                              done for efficiency reasons. This parameter
460                              defines the default size of a subfragment in
461                              sample points. A large value means less CPU time
462                              whereas a low value means better audio quality
463                              (default=32).],
464      [config_subfragment_size="${enableval}"],
465      [config_subfragment_size="32"]
466    )
467    AC_DEFINE_UNQUOTED(CONFIG_DEFAULT_SUBFRAGMENT_SIZE, $config_subfragment_size, [Define default subfragment size (in sample points).])
468    
469    AC_ARG_ENABLE(global-attenuation,
470      [  --enable-global-attenuation
471                              To prevent clipping all samples will be lowered
472                              in amplitude by this given factor.
473                              (default=0.35)],
474      [config_global_attenuation="${enableval}"],
475      [config_global_attenuation="0.35"]
476    )
477    AC_DEFINE_UNQUOTED(CONFIG_GLOBAL_ATTENUATION, $config_global_attenuation, [Define global volume attenuation (as floating point factor).])
478    
479  AC_ARG_ENABLE(voice-steal-algo,  AC_ARG_ENABLE(voice-steal-algo,
480    [  --enable-voice-steal-algo    [  --enable-voice-steal-algo
481                            Voice stealing algorithm to be used. Currently                            Voice stealing algorithm to be used. Currently
# Line 430  AC_ARG_ENABLE(sysex-buffer-size, Line 509  AC_ARG_ENABLE(sysex-buffer-size,
509  )  )
510  AC_DEFINE_UNQUOTED(CONFIG_SYSEX_BUFFER_SIZE, $config_sysex_buffer_size, [Define SysEx buffer size.])  AC_DEFINE_UNQUOTED(CONFIG_SYSEX_BUFFER_SIZE, $config_sysex_buffer_size, [Define SysEx buffer size.])
511    
 AC_ARG_ENABLE(filter-update-steps,  
   [  --enable-filter-update-steps  
                           Amount of sample points after which filter  
                           parameters (cutoff, resonance) are going to be  
                           updated (default=64). Higher value means less CPU  
                           load, but also worse parameter resolution, this  
                           value will be aligned to a power of two.],  
   [config_filter_update_steps="${enableval}"],  
   [config_filter_update_steps="64"]  
 )  
 AC_DEFINE_UNQUOTED(CONFIG_FILTER_UPDATE_STEPS, $config_filter_update_steps, [Define amount of steps to refresh filter coefficients.])  
   
512  AC_ARG_ENABLE(force-filter,  AC_ARG_ENABLE(force-filter,
513    [  --enable-force-filter    [  --enable-force-filter
514                            If enabled will force filter to be used even if                            If enabled will force filter to be used even if
# Line 544  if test "config_assert_gs_sysex_checksum Line 611  if test "config_assert_gs_sysex_checksum
611    AC_DEFINE_UNQUOTED(CONFIG_ASSERT_GS_SYSEX_CHECKSUM, 1, [Define to 1 if you want to enable GS SysEx check.])    AC_DEFINE_UNQUOTED(CONFIG_ASSERT_GS_SYSEX_CHECKSUM, 1, [Define to 1 if you want to enable GS SysEx check.])
612  fi  fi
613    
614    AC_ARG_ENABLE(portamento-time-min,
615      [  --enable-portamento-time-min
616                              Minimum Portamento time in seconds
617                              (default=0.1).],
618      [config_portamento_time_min="${enableval}"],
619      [config_portamento_time_min="0.1"]
620    )
621    AC_DEFINE_UNQUOTED(CONFIG_PORTAMENTO_TIME_MIN, $config_portamento_time_min, [Define min. portamento time.])
622    
623    AC_ARG_ENABLE(portamento-time-max,
624      [  --enable-portamento-time-max
625                              Maximum Portamento time in seconds
626                              (default=32).],
627      [config_portamento_time_max="${enableval}"],
628      [config_portamento_time_max="32"]
629    )
630    AC_DEFINE_UNQUOTED(CONFIG_PORTAMENTO_TIME_MAX, $config_portamento_time_max, [Define max. portamento time.])
631    
632    AC_ARG_ENABLE(portamento-time-default,
633      [  --enable-portamento-time-default
634                              Default Portamento time in seconds
635                              (default=1).],
636      [config_portamento_time_default="${enableval}"],
637      [config_portamento_time_default="1"]
638    )
639    AC_DEFINE_UNQUOTED(CONFIG_PORTAMENTO_TIME_DEFAULT, $config_portamento_time_default, [Define default portamento time.])
640    
641    AC_ARG_ENABLE(signed-triang-algo,
642      [  --enable-signed-triang-algo
643                              Signed triangular wave algorithm to be used (e.g. for LFOs).
644                              Currently available options:
645                                intmath:
646                                  Uses integer math without any branch will then be
647                                  converted to floating point value for each sample point.
648                                  This int->float conversion might hurt on some systems.
649                                intmathabs:
650                                  Similar to intmath but uses abs() function.
651                                  Depending on compiler and platrofm this could
652                                  perform better than integer math as it avoids
653                                  an extra integer multiply instruction.
654    
655                                diharmonic:
656                                  The triangular wave will be approximated by adding two
657                                  sinusoidials. This solution might especially hurt on
658                                  systems with weak floating point unit.
659                                benchmark (default):
660                                  This is not an algorithm. Use this option if the
661                                  appropriate algorithm should be automatically
662                                  chosen by the configure script by performing a
663                                  benchmark between the algorithms mentioned above.
664                                  This will NOT work for cross compilation!],
665      [ if test ! "(" "${enableval}" = "intmath" \
666                  -o "${enableval}" = "intmathabs" \
667                  -o "${enableval}" = "diharmonic" ")" ; then
668          AC_MSG_ERROR([Unknown triangular wave algorithm for parameter --enable-signed-triang-algo])
669        else
670          config_signed_triang_algo="${enableval}"
671        fi
672      ],
673      [config_signed_triang_algo="benchmark"]
674    )
675    
676    AC_ARG_ENABLE(unsigned-triang-algo,
677      [  --enable-unsigned-triang-algo
678                              Unsigned triangular wave algorithm to be used (e.g. for LFOs).
679                              Currently available options:
680                                intmath:
681                                  Uses integer math without any branch will then be
682                                  converted to floating point value for each sample point.
683                                  This int->float conversion might hurt on some systems.
684                                intmathabs:
685                                  Similar to intmath but uses abs() function.
686                                  Depending on compiler and platrofm this could
687                                  perform better than integer math as it avoids
688                                  an extra integer multiply instruction.
689    
690                                diharmonic:
691                                  The triangular wave will be approximated by adding two
692                                  sinusoidials. This solution might especially hurt on
693                                  systems with weak floating point unit.
694                                benchmark (default):
695                                  This is not an algorithm. Use this option if the
696                                  appropriate algorithm should be automatically
697                                  chosen by the configure script by performing a
698                                  benchmark between the algorithms mentioned above.
699                                  This will NOT work for cross compilation!],
700      [ if test ! "(" "${enableval}" = "intmath" \
701                  -o "${enableval}" = "intmathabs" \
702                  -o "${enableval}" = "diharmonic" ")" ; then
703          AC_MSG_ERROR([Unknown triangular wave algorithm for parameter --enable-unsigned-triang-algo])
704        else
705          config_unsigned_triang_algo="${enableval}"
706        fi
707      ],
708      [config_unsigned_triang_algo="benchmark"]
709    )
710    
711    AC_ARG_ENABLE(process-muted-channels,
712      [  --enable-process-muted-channels
713                              Enable processing of muted channels (default=no).
714                              In that mode all MIDI events in the muted channels
715                              will be processed. This will provide information
716                              about the active voices in the muted channels and
717                              will not discard notes, triggered in mute mode,
718                              when the channel is unmuted. But also will reduce
719                              the efficiency.],
720      [config_process_muted_channels="yes"],
721      [config_process_muted_channels="no"]
722    )
723    if test "$config_process_muted_channels" = "yes"; then
724      AC_DEFINE_UNQUOTED(CONFIG_PROCESS_MUTED_CHANNELS, 1, [Define to 1 if you want to enable processing of muted channels.])
725    fi
726    
727    AC_ARG_ENABLE(interpolate-volume,
728      [  --disable-interpolate-volume
729                              Disable interpolation of volume modulation
730                              (default=on). With this enabled, the volume changes
731                              generated by for example the envelope generator
732                              will be smoother, minimizing the risk for audio
733                              clicks. Disable it to reduce CPU usage.],
734      [config_interpolate_volume="no"],
735      [config_interpolate_volume="yes"]
736    )
737    if test "$config_interpolate_volume" = "yes"; then
738      AC_DEFINE_UNQUOTED(CONFIG_INTERPOLATE_VOLUME, 1, [Define to 1 if you want to enable interpolation of volume modulation.])
739    fi
740    
741    
742    ###########################################################################
743    # Automatic Benchmarks (to detect the best algorithms for the system)
744    
745    AC_LANG_SAVE
746    
747    if test "$config_signed_triang_algo" = "benchmark"; then
748        echo -n "benchmarking for the best (signed) triangular oscillator algorithm... "
749        AC_LANG_CPLUSPLUS
750        AC_TRY_RUN([
751                #define SIGNED 1
752                #define SILENT 1
753                #include "${srcdir}/benchmarks/triang.cpp"
754            ],
755            triang_signed=0,
756            triang_signed=$?,
757            triang_signed=0
758        )
759        if test "$triang_signed" = "2"; then
760            config_signed_triang_algo="intmath"
761            echo "integer math"
762        elif test "$triang_signed" = "3"; then
763            config_signed_triang_algo="diharmonic"
764            echo "di harmonics"
765        elif test "$triang_signed" = "5"; then
766            config_signed_triang_algo="intmathabs"
767            echo "integer math using abs()"
768        else
769            echo "Benchmark of signed triangular wave algorithms failed!"
770            echo "Maybe you are doing cross compilation? In that case you have to select"
771            echo "an algorithm manually with './configure --enable-signed-triang-algo=...'"
772            echo "Call './configure --help' for further information or read configure.in."
773            exit -1;
774        fi
775    fi
776    AC_DEFINE_UNQUOTED(CONFIG_SIGNED_TRIANG_ALGO, ${triang_signed}, [Define signed triangular wave algorithm to be used.])
777    
778    if test "$config_unsigned_triang_algo" = "benchmark"; then
779        echo -n "benchmarking for the best (unsigned) triangular oscillator algorithm... "
780        AC_LANG_CPLUSPLUS
781        AC_TRY_RUN([
782                #define SIGNED 0
783                #define SILENT 1
784                #include "${srcdir}/benchmarks/triang.cpp"
785            ],
786            triang_unsigned=0,
787            triang_unsigned=$?,
788            triang_unsigned=0
789        )
790        if test "$triang_unsigned" = "2"; then
791            config_unsigned_triang_algo="intmath"
792            echo "integer math"
793        elif test "$triang_unsigned" = "3"; then
794            config_unsigned_triang_algo="diharmonic"
795            echo "di harmonics"
796        elif test "$triang_unsigned" = "5"; then
797            config_unsigned_triang_algo="intmathabs"
798            echo "integer math using abs()"
799        else
800            echo "Benchmark of unsigned triangular wave algorithms failed!"
801            echo "Maybe you are doing cross compilation? In that case you have to select"
802            echo "an algorithm manually with './configure --enable-unsigned-triang-algo=...'"
803            echo "Call './configure --help' for further information or read configure.in."
804            exit -1;
805        fi
806    fi
807    AC_DEFINE_UNQUOTED(CONFIG_UNSIGNED_TRIANG_ALGO, ${triang_unsigned}, [Define unsigned triangular wave algorithm to be used.])
808    
809    AC_LANG_RESTORE
810    
811    
812  ###########################################################################  ###########################################################################
813  # Create Build Files  # Create Build Files
814    
815  AM_CONFIG_HEADER(config.h)  AM_CONFIG_HEADER(config.h)
816  AM_INIT_AUTOMAKE(linuxsampler, 0.3.1)  AM_INIT_AUTOMAKE(linuxsampler, "$LINUXSAMPLER_RELEASE_MAJOR.$LINUXSAMPLER_RELEASE_MINOR.$LINUXSAMPLER_RELEASE_BUILD")
817    
818  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
819  AC_PROG_CXX  AC_PROG_CXX
820    
821    # some gcc 4.0 versions need -msse for SSE register allocations
822    if test "$config_asm" = "yes"; then
823      if test "$def_arch_x86" = 1; then
824        CXXFLAGS="$CXXFLAGS -msse"
825      fi
826    fi
827    
828  # 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
829  # this, the dlfcn.h check in am_prog_libtool may fail.  # this, the dlfcn.h check in am_prog_libtool may fail.
830  AC_CHECK_HEADER(stdlib.h)  AC_CHECK_HEADER(stdlib.h)
831    
 AM_PROG_LIBTOOL  
   
832  AC_OUTPUT( \  AC_OUTPUT( \
833      Makefile \      Makefile \
834      man/Makefile \      man/Makefile \
# Line 585  AC_OUTPUT( \ Line 854  AC_OUTPUT( \
854      Documentation/Makefile \      Documentation/Makefile \
855      Documentation/Engines/Makefile \      Documentation/Engines/Makefile \
856      Documentation/Engines/gig/Makefile \      Documentation/Engines/gig/Makefile \
857        linuxsampler.pc \
858        Doxyfile \
859  )  )
860    
861    
# Line 610  echo "# Maximum Stream Refill Size: ${co Line 881  echo "# Maximum Stream Refill Size: ${co
881  echo "# Stream Size: ${config_stream_size}"  echo "# Stream Size: ${config_stream_size}"
882  echo "# Maximum Disk Streams: ${config_max_streams}"  echo "# Maximum Disk Streams: ${config_max_streams}"
883  echo "# Maximum Voices: ${config_max_voices}"  echo "# Maximum Voices: ${config_max_voices}"
884    echo "# Default Subfragment Size: ${config_subfragment_size}"
885    echo "# Global Volume Attenuation: ${config_global_attenuation}"
886  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"
887    echo "# Signed Triangular Oscillator Algorithm: ${config_signed_triang_algo}"
888    echo "# Unsigned Triangular Oscillator Algorithm: ${config_unsigned_triang_algo}"
889  echo "# SysEx Buffer Size: ${config_sysex_buffer_size} Byte"  echo "# SysEx Buffer Size: ${config_sysex_buffer_size} Byte"
890  echo "# Filter Update Steps: ${config_filter_update_steps}"  echo "# Min. Portamento Time: ${config_portamento_time_min} s"
891    echo "# Max. Portamento Time: ${config_portamento_time_max} s"
892    echo "# Default Portamento Time: ${config_portamento_time_default} s"
893  echo "# Force Filter Usage: ${config_force_filter}"  echo "# Force Filter Usage: ${config_force_filter}"
894  echo "# Filter Cutoff Minimum: ${config_filter_cutoff_min} Hz"  echo "# Filter Cutoff Minimum: ${config_filter_cutoff_min} Hz"
895  echo "# Filter Cutoff Maximum: ${config_filter_cutoff_max} Hz"  echo "# Filter Cutoff Maximum: ${config_filter_cutoff_max} Hz"
# Line 620  echo "# Override Filter Cutoff Controlle Line 897  echo "# Override Filter Cutoff Controlle
897  echo "# Override Filter Resonance Controller: ${config_override_resonance_ctrl}"  echo "# Override Filter Resonance Controller: ${config_override_resonance_ctrl}"
898  echo "# Override Filter Type: ${config_override_filter_type}"  echo "# Override Filter Type: ${config_override_filter_type}"
899  echo "# Assert GS SysEx Checksum: ${config_assert_gs_sysex_checksum}"  echo "# Assert GS SysEx Checksum: ${config_assert_gs_sysex_checksum}"
900    echo "# Process Muted Channels: ${config_process_muted_channels}"
901    echo "# Interpolate Volume: ${config_interpolate_volume}"
902  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
903  echo "# Read './configure --help' or file 'configure.in' for details.     #"  echo "# Read './configure --help' or file 'configure.in' for details.     #"
904  echo "#####################################################################"  echo "#####################################################################"

Legend:
Removed from v.654  
changed lines
  Added in v.838

  ViewVC Help
Powered by ViewVC