/[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 579 by schoenebeck, Tue May 24 19:20:20 2005 UTC revision 822 by wylder, Thu Dec 22 21:45:30 2005 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=3
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 64  if test "$have_unix98" = "no"; then Line 99  if test "$have_unix98" = "no"; then
99      fi      fi
100  fi  fi
101    
102    # check for <features.h>
103    AC_CHECK_HEADERS(features.h)
104    
105  # Checks for available audio and MIDI systems / drivers  # Checks for available audio and MIDI systems / drivers
106  # (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)
107  have_midi_input_driver="false"  have_midi_input_driver="false"
# Line 150  fi Line 188  fi
188  AM_CONDITIONAL(HAVE_JACK, test $HAVE_JACK = 1)  AM_CONDITIONAL(HAVE_JACK, test $HAVE_JACK = 1)
189  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.])
190    
191    # MidiShare (Linux, OS X, Windows)
192    AC_CHECK_HEADER(MidiShare.h,
193        AC_CHECK_LIB(MidiShare, MidiCountEvs,
194                                have_midishare=1,
195                                have_midishare=0
196                    )
197                    ,
198                    have_midishare=0
199    )
200    if test "$have_midishare" = "1"; then
201        have_midi_input_driver="true"
202    fi
203    AM_CONDITIONAL(HAVE_MIDISHARE, test $have_midishare = "1")
204    AC_DEFINE_UNQUOTED(HAVE_MIDISHARE,$have_midishare,[Define to 1 if you have MidiShare installed.])
205    
206    # CoreMIDI (OS X)
207    AC_CHECK_HEADER(CoreMIDI/CoreMIDI.h,
208                    have_coremidi=1,
209                    have_coremidi=0
210    )
211    if test "$have_coremidi" = "1"; then
212        have_midi_input_driver="true"
213    fi
214    AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")
215    AC_DEFINE_UNQUOTED(HAVE_COREMIDI,$have_coremidi,[Define to 1 if you have CoreMIDI installed.])
216    
217  # Check presence of libgig  # Check presence of libgig
218  libgig_version="2.0.0"  libgig_version="2.0.2"
219  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)
220  if test "$HAVE_GIG" = "false"; then  if test "$HAVE_GIG" = "false"; then
221      echo "Required libgig version not found!"      echo "Required libgig version not found!"
222      echo "You need to have libgig version ${libgig_version} installed!"      echo "You need to have libgig version ${libgig_version} installed!"
223      exit -1;      exit -1;
224    else
225        echo "yes, found libgig $libgig_version"
226  fi  fi
227  AC_SUBST(GIG_CFLAGS)  AC_SUBST(GIG_CFLAGS)
228  AC_SUBST(GIG_LIBS)  AC_SUBST(GIG_LIBS)
# Line 167  AC_SUBST(SQLITE3_LIBS) Line 233  AC_SUBST(SQLITE3_LIBS)
233  AC_SUBST(SQLITE3_CFLAGS)  AC_SUBST(SQLITE3_CFLAGS)
234  if test $HAVE_SQLITE3 = false; then  if test $HAVE_SQLITE3 = false; then
235      HAVE_SQLITE3=0;      HAVE_SQLITE3=0;
236        echo "no, support for instrument DB will be disabled!"
237  else  else
238      HAVE_SQLITE3=1      HAVE_SQLITE3=1
239        echo "yes"
240  fi  fi
241  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)
242  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.])
243    
244  if test "$have_midi_input_driver" = "false"; then  if test "$have_midi_input_driver" = "false"; then
245      echo "No supported MIDI input system found!"      echo "No supported MIDI input system found!"
246      echo "Sorry, LinuxSampler only supports ALSA as MIDI input driver at the moment!"      echo "Sorry, LinuxSampler only supports the following MIDI drivers at the moment:"
247        echo "ALSA, MIDIShare, CoreMIDI."
248        echo "If you think you have one of those available on your system, make sure you"
249        echo "also have the respective development (header) files installed."
250      exit -1;      exit -1;
251  fi  fi
252  if test "$have_audio_output_driver" = "false"; then  if test "$have_audio_output_driver" = "false"; then
# Line 190  fi Line 261  fi
261    
262  # TODO: should we use AC_ARG_VAR(variable, description) instead?  # TODO: should we use AC_ARG_VAR(variable, description) instead?
263    
264    AC_ARG_ENABLE(asm,
265      [  --enable-asm
266                              Enable hand-crafted assembly optimizations
267                              (default=off). LinuxSampler provides CPU specific
268                              assembly optimizations for the most important
269                              synthesis algorithms. This is currently disabled
270                              by default since current asm code is broken.],
271      [config_asm="yes"],
272      [config_asm="no"]
273    )
274    if test "$config_asm" = "yes"; then
275      AC_DEFINE_UNQUOTED(CONFIG_ASM, 1, [Define to 1 if you want to enable hand-crafted asm optimizations.])
276    fi
277    
278  AC_ARG_ENABLE(dev-mode,  AC_ARG_ENABLE(dev-mode,
279    [  --enable-dev-mode    [  --disable-dev-mode
280                            Enable development mode (default=no). In that mode                            Disable development mode (default=on). In that mode
281                            we do some extra sanity checks here and there.                            we do some extra sanity checks here and there.
282                            This helps to spot possible problems, but reduces                            This helps to spot possible problems, but reduces
283                            efficiency a bit],                            efficiency a bit],
284    [config_dev_mode="yes"],    [config_dev_mode="no"],
285    [config_dev_mode="no"]    [config_dev_mode="yes"]
286  )  )
287  if test "$config_dev_mode" = "yes"; then  if test "$config_dev_mode" = "yes"; then
288    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 354  AC_ARG_ENABLE(max-voices, Line 439  AC_ARG_ENABLE(max-voices,
439  )  )
440  AC_DEFINE_UNQUOTED(CONFIG_MAX_VOICES, $config_max_voices, [Define max. voices.])  AC_DEFINE_UNQUOTED(CONFIG_MAX_VOICES, $config_max_voices, [Define max. voices.])
441    
442    AC_ARG_ENABLE(subfragment-size,
443      [  --enable-subfragment-size
444                              Every audio fragment will be splitted into
445                              subfragments. Where each subfragment renders
446                              audio with constant synthesis parameters. This is
447                              done for efficiency reasons. This parameter
448                              defines the default size of a subfragment in
449                              sample points. A large value means less CPU time
450                              whereas a low value means better audio quality
451                              (default=32).],
452      [config_subfragment_size="${enableval}"],
453      [config_subfragment_size="32"]
454    )
455    AC_DEFINE_UNQUOTED(CONFIG_DEFAULT_SUBFRAGMENT_SIZE, $config_subfragment_size, [Define default subfragment size (in sample points).])
456    
457    AC_ARG_ENABLE(global-attenuation,
458      [  --enable-global-attenuation
459                              To prevent clipping all samples will be lowered
460                              in amplitude by this given factor.
461                              (default=0.35)],
462      [config_global_attenuation="${enableval}"],
463      [config_global_attenuation="0.35"]
464    )
465    AC_DEFINE_UNQUOTED(CONFIG_GLOBAL_ATTENUATION, $config_global_attenuation, [Define global volume attenuation (as floating point factor).])
466    
467  AC_ARG_ENABLE(voice-steal-algo,  AC_ARG_ENABLE(voice-steal-algo,
468    [  --enable-voice-steal-algo    [  --enable-voice-steal-algo
469                            Voice stealing algorithm to be used. Currently                            Voice stealing algorithm to be used. Currently
# Line 387  AC_ARG_ENABLE(sysex-buffer-size, Line 497  AC_ARG_ENABLE(sysex-buffer-size,
497  )  )
498  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.])
499    
 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.])  
   
500  AC_ARG_ENABLE(force-filter,  AC_ARG_ENABLE(force-filter,
501    [  --enable-force-filter    [  --enable-force-filter
502                            If enabled will force filter to be used even if                            If enabled will force filter to be used even if
# Line 501  if test "config_assert_gs_sysex_checksum Line 599  if test "config_assert_gs_sysex_checksum
599    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.])
600  fi  fi
601    
602    AC_ARG_ENABLE(signed-triang-algo,
603      [  --enable-signed-triang-algo
604                              Signed triangular wave algorithm to be used (e.g. for LFOs).
605                              Currently available options:
606                                intmath:
607                                  Uses integer math without any branch will then be
608                                  converted to floating point value for each sample point.
609                                  This int->float conversion might hurt on some systems.
610                                intmathabs:
611                                  Similar to intmath but uses abs() function.
612                                  Depending on compiler and platrofm this could
613                                  perform better than integer math as it avoids
614                                  an extra integer multiply instruction.
615    
616                                diharmonic:
617                                  The triangular wave will be approximated by adding two
618                                  sinusoidials. This solution might especially hurt on
619                                  systems with weak floating point unit.
620                                benchmark (default):
621                                  This is not an algorithm. Use this option if the
622                                  appropriate algorithm should be automatically
623                                  chosen by the configure script by performing a
624                                  benchmark between the algorithms mentioned above.
625                                  This will NOT work for cross compilation!],
626      [ if test ! "(" "${enableval}" = "intmath" \
627                  -o "${enableval}" = "intmathabs" \
628                  -o "${enableval}" = "diharmonic" ")" ; then
629          AC_MSG_ERROR([Unknown triangular wave algorithm for parameter --enable-signed-triang-algo])
630        else
631          config_signed_triang_algo="${enableval}"
632        fi
633      ],
634      [config_signed_triang_algo="benchmark"]
635    )
636    
637    AC_ARG_ENABLE(unsigned-triang-algo,
638      [  --enable-unsigned-triang-algo
639                              Unsigned triangular wave algorithm to be used (e.g. for LFOs).
640                              Currently available options:
641                                intmath:
642                                  Uses integer math without any branch will then be
643                                  converted to floating point value for each sample point.
644                                  This int->float conversion might hurt on some systems.
645                                intmathabs:
646                                  Similar to intmath but uses abs() function.
647                                  Depending on compiler and platrofm this could
648                                  perform better than integer math as it avoids
649                                  an extra integer multiply instruction.
650    
651                                diharmonic:
652                                  The triangular wave will be approximated by adding two
653                                  sinusoidials. This solution might especially hurt on
654                                  systems with weak floating point unit.
655                                benchmark (default):
656                                  This is not an algorithm. Use this option if the
657                                  appropriate algorithm should be automatically
658                                  chosen by the configure script by performing a
659                                  benchmark between the algorithms mentioned above.
660                                  This will NOT work for cross compilation!],
661      [ if test ! "(" "${enableval}" = "intmath" \
662                  -o "${enableval}" = "intmathabs" \
663                  -o "${enableval}" = "diharmonic" ")" ; then
664          AC_MSG_ERROR([Unknown triangular wave algorithm for parameter --enable-unsigned-triang-algo])
665        else
666          config_unsigned_triang_algo="${enableval}"
667        fi
668      ],
669      [config_unsigned_triang_algo="benchmark"]
670    )
671    
672    AC_ARG_ENABLE(process-muted-channels,
673      [  --enable-process-muted-channels
674                              Enable processing of muted channels (default=no).
675                              In that mode all MIDI events in the muted channels
676                              will be processed. This will provide information
677                              about the active voices in the muted channels and
678                              will not discard notes, triggered in mute mode,
679                              when the channel is unmuted. But also will reduce
680                              the efficiency.],
681      [config_process_muted_channels="yes"],
682      [config_process_muted_channels="no"]
683    )
684    if test "$config_process_muted_channels" = "yes"; then
685      AC_DEFINE_UNQUOTED(CONFIG_PROCESS_MUTED_CHANNELS, 1, [Define to 1 if you want to enable processing of muted channels.])
686    fi
687    
688    
689    ###########################################################################
690    # Automatic Benchmarks (to detect the best algorithms for the system)
691    
692    AC_LANG_SAVE
693    
694    if test "$config_signed_triang_algo" = "benchmark"; then
695        echo -n "benchmarking for the best (signed) triangular oscillator algorithm... "
696        AC_LANG_CPLUSPLUS
697        AC_TRY_RUN([
698                #define SIGNED 1
699                #define SILENT 1
700                #include "${srcdir}/benchmarks/triang.cpp"
701            ],
702            triang_signed=0,
703            triang_signed=$?,
704            triang_signed=0
705        )
706        if test "$triang_signed" = "2"; then
707            config_signed_triang_algo="intmath"
708            echo "integer math"
709        elif test "$triang_signed" = "3"; then
710            config_signed_triang_algo="diharmonic"
711            echo "di harmonics"
712        elif test "$triang_signed" = "5"; then
713            config_signed_triang_algo="intmathabs"
714            echo "integer math using abs()"
715        else
716            echo "Benchmark of signed triangular wave algorithms failed!"
717            echo "Maybe you are doing cross compilation? In that case you have to select"
718            echo "an algorithm manually with './configure --enable-signed-triang-algo=...'"
719            echo "Call './configure --help' for further information or read configure.in."
720            exit -1;
721        fi
722    fi
723    AC_DEFINE_UNQUOTED(CONFIG_SIGNED_TRIANG_ALGO, ${triang_signed}, [Define signed triangular wave algorithm to be used.])
724    
725    if test "$config_unsigned_triang_algo" = "benchmark"; then
726        echo -n "benchmarking for the best (unsigned) triangular oscillator algorithm... "
727        AC_LANG_CPLUSPLUS
728        AC_TRY_RUN([
729                #define SIGNED 0
730                #define SILENT 1
731                #include "${srcdir}/benchmarks/triang.cpp"
732            ],
733            triang_unsigned=0,
734            triang_unsigned=$?,
735            triang_unsigned=0
736        )
737        if test "$triang_unsigned" = "2"; then
738            config_unsigned_triang_algo="intmath"
739            echo "integer math"
740        elif test "$triang_unsigned" = "3"; then
741            config_unsigned_triang_algo="diharmonic"
742            echo "di harmonics"
743        elif test "$triang_unsigned" = "5"; then
744            config_unsigned_triang_algo="intmathabs"
745            echo "integer math using abs()"
746        else
747            echo "Benchmark of unsigned triangular wave algorithms failed!"
748            echo "Maybe you are doing cross compilation? In that case you have to select"
749            echo "an algorithm manually with './configure --enable-unsigned-triang-algo=...'"
750            echo "Call './configure --help' for further information or read configure.in."
751            exit -1;
752        fi
753    fi
754    AC_DEFINE_UNQUOTED(CONFIG_UNSIGNED_TRIANG_ALGO, ${triang_unsigned}, [Define unsigned triangular wave algorithm to be used.])
755    
756    AC_LANG_RESTORE
757    
758    
759  ###########################################################################  ###########################################################################
760  # Create Build Files  # Create Build Files
761    
762  AM_CONFIG_HEADER(config.h)  AM_CONFIG_HEADER(config.h)
763  AM_INIT_AUTOMAKE(linuxsampler, 0.3.1)  AM_INIT_AUTOMAKE(linuxsampler, "$LINUXSAMPLER_RELEASE_MAJOR.$LINUXSAMPLER_RELEASE_MINOR.$LINUXSAMPLER_RELEASE_BUILD")
764    
765  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
766  AC_PROG_CXX  AC_PROG_CXX
767    
768    # some gcc 4.0 versions need -msse for SSE register allocations
769    if test "$config_asm" = "yes"; then
770      if test "$def_arch_x86" = 1; then
771        CXXFLAGS="$CXXFLAGS -msse"
772      fi
773    fi
774    
775  # 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
776  # this, the dlfcn.h check in am_prog_libtool may fail.  # this, the dlfcn.h check in am_prog_libtool may fail.
777  AC_CHECK_HEADER(stdlib.h)  AC_CHECK_HEADER(stdlib.h)
778    
779  AM_PROG_LIBTOOL  AC_OUTPUT( \
780        Makefile \
781  AC_OUTPUT(Makefile man/Makefile man/linuxsampler.1 src/Makefile src/network/Makefile src/engines/Makefile src/engines/gig/Makefile src/engines/common/Makefile src/common/Makefile src/lib/Makefile src/lib/fileloader/Makefile src/lib/fileloader/libgig/Makefile src/testcases/Makefile src/drivers/Makefile src/drivers/audio/Makefile src/drivers/midi/Makefile)      man/Makefile \
782        man/linuxsampler.1 \
783        src/Makefile \
784        src/network/Makefile \
785        src/engines/Makefile \
786        src/engines/gig/Makefile \
787        src/engines/common/Makefile \
788        src/common/Makefile src/lib/Makefile \
789        src/lib/fileloader/Makefile \
790        src/lib/fileloader/libgig/Makefile \
791        src/testcases/Makefile \
792        src/drivers/Makefile \
793        src/drivers/audio/Makefile \
794        src/drivers/midi/Makefile \
795        linuxsampler.spec \
796        debian/Makefile \
797        Artwork/Makefile \
798        scripts/Makefile \
799        osx/Makefile \
800        osx/LinuxSampler.xcode/Makefile \
801        Documentation/Makefile \
802        Documentation/Engines/Makefile \
803        Documentation/Engines/gig/Makefile \
804        linuxsampler.pc \
805        Doxyfile \
806    )
807    
808    
809  ###########################################################################  ###########################################################################
# Line 527  echo "" Line 813  echo ""
813  echo "#####################################################################"  echo "#####################################################################"
814  echo "# LinuxSampler Configuration                                        #"  echo "# LinuxSampler Configuration                                        #"
815  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
816    echo "# Assembly Optimizations: ${config_asm}"
817  echo "# Development Mode: ${config_dev_mode}"  echo "# Development Mode: ${config_dev_mode}"
818  echo "# Debug Level: ${config_debug_level}"  echo "# Debug Level: ${config_debug_level}"
819  echo "# Use Exceptions in RT Context: ${config_rt_exceptions}"  echo "# Use Exceptions in RT Context: ${config_rt_exceptions}"
# Line 541  echo "# Maximum Stream Refill Size: ${co Line 828  echo "# Maximum Stream Refill Size: ${co
828  echo "# Stream Size: ${config_stream_size}"  echo "# Stream Size: ${config_stream_size}"
829  echo "# Maximum Disk Streams: ${config_max_streams}"  echo "# Maximum Disk Streams: ${config_max_streams}"
830  echo "# Maximum Voices: ${config_max_voices}"  echo "# Maximum Voices: ${config_max_voices}"
831    echo "# Default Subfragment Size: ${config_subfragment_size}"
832    echo "# Global Volume Attenuation: ${config_global_attenuation}"
833  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"  echo "# Voice Stealing Algorithm: ${config_voice_steal_algo}"
834    echo "# Signed Triangular Oscillator Algorithm: ${config_signed_triang_algo}"
835    echo "# Unsigned Triangular Oscillator Algorithm: ${config_unsigned_triang_algo}"
836  echo "# SysEx Buffer Size: ${config_sysex_buffer_size} Byte"  echo "# SysEx Buffer Size: ${config_sysex_buffer_size} Byte"
 echo "# Filter Update Steps: ${config_filter_update_steps}"  
837  echo "# Force Filter Usage: ${config_force_filter}"  echo "# Force Filter Usage: ${config_force_filter}"
838  echo "# Filter Cutoff Minimum: ${config_filter_cutoff_min} Hz"  echo "# Filter Cutoff Minimum: ${config_filter_cutoff_min} Hz"
839  echo "# Filter Cutoff Maximum: ${config_filter_cutoff_max} Hz"  echo "# Filter Cutoff Maximum: ${config_filter_cutoff_max} Hz"
# Line 551  echo "# Override Filter Cutoff Controlle Line 841  echo "# Override Filter Cutoff Controlle
841  echo "# Override Filter Resonance Controller: ${config_override_resonance_ctrl}"  echo "# Override Filter Resonance Controller: ${config_override_resonance_ctrl}"
842  echo "# Override Filter Type: ${config_override_filter_type}"  echo "# Override Filter Type: ${config_override_filter_type}"
843  echo "# Assert GS SysEx Checksum: ${config_assert_gs_sysex_checksum}"  echo "# Assert GS SysEx Checksum: ${config_assert_gs_sysex_checksum}"
844    echo "# Process Muted Channels: ${config_process_muted_channels}"
845  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
846  echo "# Read './configure --help' or file 'configure.in' for details.     #"  echo "# Read './configure --help' or file 'configure.in' for details.     #"
847  echo "#####################################################################"  echo "#####################################################################"

Legend:
Removed from v.579  
changed lines
  Added in v.822

  ViewVC Help
Powered by ViewVC