/[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 1049 by schoenebeck, Wed Feb 28 06:53:42 2007 UTC revision 1432 by schoenebeck, Mon Oct 15 12:14:13 2007 UTC
# Line 4  AC_INIT(configure.in) Line 4  AC_INIT(configure.in)
4  # LinuxSampler's / liblinuxsampler's "official" release version:  # LinuxSampler's / liblinuxsampler's "official" release version:
5    
6  LINUXSAMPLER_RELEASE_MAJOR=0  LINUXSAMPLER_RELEASE_MAJOR=0
7  LINUXSAMPLER_RELEASE_MINOR=4  LINUXSAMPLER_RELEASE_MINOR=5
8  LINUXSAMPLER_RELEASE_BUILD=0.4cvs  LINUXSAMPLER_RELEASE_BUILD=0
9    
10  #------------------------------------------------------------------------------------  #------------------------------------------------------------------------------------
11  # The following is the libtool / shared library version. This doesn't have to  # The following is the libtool / shared library version. This doesn't have to
# Line 24  LINUXSAMPLER_RELEASE_BUILD=0.4cvs Line 24  LINUXSAMPLER_RELEASE_BUILD=0.4cvs
24  #  6. If any interfaces have been removed since the last public release, then set age  #  6. If any interfaces have been removed since the last public release, then set age
25  #     to 0.  #     to 0.
26    
27  LIBLINUXSAMPLER_LT_CURRENT=0  LIBLINUXSAMPLER_LT_CURRENT=1
28  LIBLINUXSAMPLER_LT_REVISION=0  LIBLINUXSAMPLER_LT_REVISION=0
29  LIBLINUXSAMPLER_LT_AGE=0  LIBLINUXSAMPLER_LT_AGE=0
30  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE"  SHARED_VERSION_INFO="$LIBLINUXSAMPLER_LT_CURRENT:$LIBLINUXSAMPLER_LT_REVISION:$LIBLINUXSAMPLER_LT_AGE"
# Line 127  AC_ARG_ENABLE(alsa-driver, Line 127  AC_ARG_ENABLE(alsa-driver,
127    [  --disable-alsa-driver    [  --disable-alsa-driver
128                            Disable support for the Advanced Linux Sound                            Disable support for the Advanced Linux Sound
129                            Architecture (ALSA).],                            Architecture (ALSA).],
130    [config_alsa_driver="no"],    [config_alsa_driver="$enableval"],
131    [config_alsa_driver="yes"]    [config_alsa_driver="yes"]
132  )  )
133  have_alsa=0  have_alsa=0
# Line 207  AC_ARG_ENABLE(jack-driver, Line 207  AC_ARG_ENABLE(jack-driver,
207    [  --disable-jack-driver    [  --disable-jack-driver
208                            Disable support for the Jack Audio Connection Kit                            Disable support for the Jack Audio Connection Kit
209                            (JACK).],                            (JACK).],
210    [config_jack_driver="no"],    [config_jack_driver="$enableval"],
211    [config_jack_driver="yes"]    [config_jack_driver="yes"]
212  )  )
213  have_jack=0  have_jack=0
# Line 230  AC_ARG_ENABLE(arts-driver, Line 230  AC_ARG_ENABLE(arts-driver,
230    [  --disable-arts-driver    [  --disable-arts-driver
231                            Disable support for the Analogue Realtime System                            Disable support for the Analogue Realtime System
232                            (aRts).],                            (aRts).],
233    [config_arts_driver="no"],    [config_arts_driver="$enableval"],
234    [config_arts_driver="yes"]    [config_arts_driver="yes"]
235  )  )
236  have_arts=0  have_arts=0
# Line 251  AC_DEFINE_UNQUOTED(HAVE_ARTS,$have_arts, Line 251  AC_DEFINE_UNQUOTED(HAVE_ARTS,$have_arts,
251  AC_ARG_ENABLE(midishare-driver,  AC_ARG_ENABLE(midishare-driver,
252    [  --disable-midishare-driver    [  --disable-midishare-driver
253                            Disable support for the MidiShare system.],                            Disable support for the MidiShare system.],
254    [config_midishare_driver="no"],    [config_midishare_driver="$enableval"],
255    [config_midishare_driver="yes"]    [config_midishare_driver="yes"]
256  )  )
257  have_midishare=0  have_midishare=0
# Line 277  AC_DEFINE_UNQUOTED(HAVE_MIDISHARE,$have_ Line 277  AC_DEFINE_UNQUOTED(HAVE_MIDISHARE,$have_
277  AC_ARG_ENABLE(coremidi-driver,  AC_ARG_ENABLE(coremidi-driver,
278    [  --disable-coremidi-driver    [  --disable-coremidi-driver
279                            Disable support for the Apple CoreMIDI system.],                            Disable support for the Apple CoreMIDI system.],
280    [config_coremidi_driver="no"],    [config_coremidi_driver="$enableval"],
281    [config_coremidi_driver="yes"]    [config_coremidi_driver="yes"]
282  )  )
283  have_coremidi=0  have_coremidi=0
# Line 295  fi Line 295  fi
295  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")  AM_CONDITIONAL(HAVE_COREMIDI, test $have_coremidi = "1")
296  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.])
297    
298    # have we found at least one MIDI input and one audio output driver ?
299    if test "$have_midi_input_driver" = "false"; then
300        echo "No supported MIDI input system found!"
301        echo "Sorry, LinuxSampler only supports the following MIDI drivers at the moment:"
302        echo "ALSA, MIDIShare, CoreMIDI."
303        echo "If you think you have one of those available on your system, make sure you"
304        echo "also have the respective development (header) files installed."
305        exit -1;
306    fi
307    if test "$have_audio_output_driver" = "false"; then
308        echo "No supported audio output system found!"
309        echo "Sorry, LinuxSampler only supports ALSA, JACK and ARTS as audio output"
310        echo "driver at the moment!"
311        exit -1;
312    fi
313    
314    
315    
316    ###########################################################################
317    # Checks for various DLL libraries
318    
319  # Check presence of libgig  # Check presence of libgig
320  libgig_version="3.1.0"  libgig_version="3.2.0"
321  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)
322  if test "$HAVE_GIG" = "false"; then  if test "$HAVE_GIG" = "false"; then
323      echo "Required libgig version not found!"      echo "Required libgig version not found!"
# Line 308  fi Line 329  fi
329  AC_SUBST(GIG_CFLAGS)  AC_SUBST(GIG_CFLAGS)
330  AC_SUBST(GIG_LIBS)  AC_SUBST(GIG_LIBS)
331    
332  # SQLITE3  # Instruments DB feature (requires SQLite 3.3)
333  PKG_CHECK_MODULES(SQLITE3, sqlite3, HAVE_SQLITE3=true, HAVE_SQLITE3=false)  AC_ARG_ENABLE(instruments-db,
334  AC_SUBST(SQLITE3_LIBS)    [  --disable-instruments-db
335  AC_SUBST(SQLITE3_CFLAGS)                            Disable compilation of the sampler's instruments
336  if test $HAVE_SQLITE3 = false; then                            database feature. You need to have SQLite 3.3
337      HAVE_SQLITE3=0;                            or younger installed for this feature.],
338      echo "no, support for instrument DB will be disabled!"    [config_instruments_db="$enableval"],
339      [config_instruments_db="yes"]
340    )
341    HAVE_SQLITE3=0;
342    if test "$config_instruments_db" = "yes"; then
343        # Check presence of sqlite3
344        sqlite_version="3.3"
345        PKG_CHECK_MODULES(SQLITE3, sqlite3 >= $sqlite_version, HAVE_SQLITE3=true, HAVE_SQLITE3=false)
346        AC_SUBST(SQLITE3_LIBS)
347        AC_SUBST(SQLITE3_CFLAGS)
348        if test $HAVE_SQLITE3 = false; then
349            HAVE_SQLITE3=0
350            config_instruments_db="no"
351            echo "*** Required sqlite version not found!"
352            echo "*** You need to have sqlite version ${sqlite_version} or higher"
353            echo "*** for instruments database support to be enabled."
354            echo "*** Support for instruments DB will be disabled!"
355        else
356            HAVE_SQLITE3=1
357        fi
358  else  else
359      HAVE_SQLITE3=1      echo "Instruments DB feature disabled by configure script parameter"
     echo "yes"  
360  fi  fi
361  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)  AM_CONDITIONAL(HAVE_SQLITE3, test $HAVE_SQLITE3 = 1)
362  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 want the instruments DB feature and have SQLITE3 installed.])
363    
 if test "$have_midi_input_driver" = "false"; then  
     echo "No supported MIDI input system found!"  
     echo "Sorry, LinuxSampler only supports the following MIDI drivers at the moment:"  
     echo "ALSA, MIDIShare, CoreMIDI."  
     echo "If you think you have one of those available on your system, make sure you"  
     echo "also have the respective development (header) files installed."  
     exit -1;  
 fi  
 if test "$have_audio_output_driver" = "false"; then  
     echo "No supported audio output system found!"  
     echo "Sorry, LinuxSampler only supports ALSA and JACK as audio output driver at the moment!"  
     exit -1;  
 fi  
364    
365    
366  ###########################################################################  ###########################################################################
# Line 343  fi Line 369  fi
369  # TODO: should we use AC_ARG_VAR(variable, description) instead?  # TODO: should we use AC_ARG_VAR(variable, description) instead?
370    
371  AC_ARG_ENABLE(asm,  AC_ARG_ENABLE(asm,
372    [  --enable-asm    [  --disable-asm
373                            Enable hand-crafted assembly optimizations                            Enable hand-crafted assembly optimizations
374                            (default=off). LinuxSampler provides CPU specific                            (default=on). LinuxSampler provides CPU specific
375                            assembly optimizations for the most important                            assembly optimizations. This is currently limited
376                            synthesis algorithms. This is currently disabled                            to just enter a fast (denormal) FPU mode on x86
377                            by default since current asm code is broken.],                            platforms. There are currently no synthesis core
378    [config_asm="yes"],                            assembly optimizations anymore since LS 0.4.0],
379    [config_asm="no"]    [config_asm="$enableval"],
380      [config_asm="yes"]
381  )  )
382  if test "$config_asm" = "yes"; then  if test "$config_asm" = "yes"; then
383    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 asm optimizations.])
384  fi  fi
385    
386  AC_ARG_ENABLE(dev-mode,  AC_ARG_ENABLE(dev-mode,
387    [  --disable-dev-mode    [  --enable-dev-mode
388                            Disable development mode (default=on). In that mode                            Enable development mode (default=off). In that mode
389                            we do some extra sanity checks here and there.                            we do some extra sanity checks here and there.
390                            This helps to spot possible problems, but reduces                            This helps to spot possible problems, but reduces
391                            efficiency a bit],                            efficiency a bit],
392    [config_dev_mode="no"],    [config_dev_mode="$enableval"],
393    [config_dev_mode="yes"]    [config_dev_mode="no"]
394  )  )
395  if test "$config_dev_mode" = "yes"; then  if test "$config_dev_mode" = "yes"; then
396    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 390  AC_ARG_ENABLE(rt-exceptions, Line 417  AC_ARG_ENABLE(rt-exceptions,
417                            context as well. Otherwise if disabled                            context as well. Otherwise if disabled
418                            segmentation faults will be forced by the                            segmentation faults will be forced by the
419                            application on critical errors.],                            application on critical errors.],
420    [config_rt_exceptions="yes"],    [config_rt_exceptions="$enableval"],
421    [config_rt_exceptions="no"]    [config_rt_exceptions="no"]
422  )  )
423  if test "$config_rt_exceptions" = "yes"; then  if test "$config_rt_exceptions" = "yes"; then
# Line 584  AC_ARG_ENABLE(force-filter, Line 611  AC_ARG_ENABLE(force-filter,
611                            If enabled will force filter to be used even if                            If enabled will force filter to be used even if
612                            no usage was define in instrument patch files.                            no usage was define in instrument patch files.
613                            (default=no).],                            (default=no).],
614    [config_force_filter="yes"],    [config_force_filter="$enableval"],
615    [config_force_filter="no"]    [config_force_filter="no"]
616  )  )
617  if test "$config_force_filter" = "yes"; then  if test "$config_force_filter" = "yes"; then
# Line 674  AC_ARG_ENABLE(gs-checksum, Line 701  AC_ARG_ENABLE(gs-checksum,
701                            messages which do not provide a correct checksum                            messages which do not provide a correct checksum
702                            will be ignored. This is disabled by default as                            will be ignored. This is disabled by default as
703                            not all devices honor GS checksums.],                            not all devices honor GS checksums.],
704    [config_assert_gs_sysex_checksum="yes"],    [config_assert_gs_sysex_checksum="$enableval"],
705    [config_assert_gs_sysex_checksum="no"]    [config_assert_gs_sysex_checksum="no"]
706  )  )
707  if test "config_assert_gs_sysex_checksum" = "yes"; then  if test "config_assert_gs_sysex_checksum" = "yes"; then
# Line 720  AC_ARG_ENABLE(signed-triang-algo, Line 747  AC_ARG_ENABLE(signed-triang-algo,
747                                Similar to intmath but uses abs() function.                                Similar to intmath but uses abs() function.
748                                Depending on compiler and platrofm this could                                Depending on compiler and platrofm this could
749                                perform better than integer math as it avoids                                perform better than integer math as it avoids
750                                an extra integer multiply instruction.                                an extra integer multiply instruction.
   
751                              diharmonic:                              diharmonic:
752                                The triangular wave will be approximated by adding two                                The triangular wave will be approximated by adding two
753                                sinusoidials. This solution might especially hurt on                                sinusoidials. This solution might especially hurt on
# Line 755  AC_ARG_ENABLE(unsigned-triang-algo, Line 781  AC_ARG_ENABLE(unsigned-triang-algo,
781                                Similar to intmath but uses abs() function.                                Similar to intmath but uses abs() function.
782                                Depending on compiler and platrofm this could                                Depending on compiler and platrofm this could
783                                perform better than integer math as it avoids                                perform better than integer math as it avoids
784                                an extra integer multiply instruction.                                an extra integer multiply instruction.
   
785                              diharmonic:                              diharmonic:
786                                The triangular wave will be approximated by adding two                                The triangular wave will be approximated by adding two
787                                sinusoidials. This solution might especially hurt on                                sinusoidials. This solution might especially hurt on
# Line 787  AC_ARG_ENABLE(process-muted-channels, Line 812  AC_ARG_ENABLE(process-muted-channels,
812                            will not discard notes, triggered in mute mode,                            will not discard notes, triggered in mute mode,
813                            when the channel is unmuted. But also will reduce                            when the channel is unmuted. But also will reduce
814                            the efficiency.],                            the efficiency.],
815    [config_process_muted_channels="yes"],    [config_process_muted_channels="$enableval"],
816    [config_process_muted_channels="no"]    [config_process_muted_channels="no"]
817  )  )
818  if test "$config_process_muted_channels" = "yes"; then  if test "$config_process_muted_channels" = "yes"; then
# Line 801  AC_ARG_ENABLE(process-all-notes-off, Line 826  AC_ARG_ENABLE(process-all-notes-off,
826                            all voices whenever it receives an All-Notes-Off                            all voices whenever it receives an All-Notes-Off
827                            MIDI message. You can disable this behavior, so                            MIDI message. You can disable this behavior, so
828                            that LS simply ignores such messages.],                            that LS simply ignores such messages.],
829    [config_process_all_notes_off="no"],    [config_process_all_notes_off="$enableval"],
830    [config_process_all_notes_off="yes"]    [config_process_all_notes_off="yes"]
831  )  )
832  if test "$config_process_all_notes_off" = "yes"; then  if test "$config_process_all_notes_off" = "yes"; then
# Line 815  AC_ARG_ENABLE(interpolate-volume, Line 840  AC_ARG_ENABLE(interpolate-volume,
840                            generated by for example the envelope generator                            generated by for example the envelope generator
841                            will be smoother, minimizing the risk for audio                            will be smoother, minimizing the risk for audio
842                            clicks. Disable it to reduce CPU usage.],                            clicks. Disable it to reduce CPU usage.],
843    [config_interpolate_volume="no"],    [config_interpolate_volume="$enableval"],
844    [config_interpolate_volume="yes"]    [config_interpolate_volume="yes"]
845  )  )
846  if test "$config_interpolate_volume" = "yes"; then  if test "$config_interpolate_volume" = "yes"; then
847    AC_DEFINE_UNQUOTED(CONFIG_INTERPOLATE_VOLUME, 1, [Define to 1 if you want to enable interpolation of volume modulation.])    AC_DEFINE_UNQUOTED(CONFIG_INTERPOLATE_VOLUME, 1, [Define to 1 if you want to enable interpolation of volume modulation.])
848  fi  fi
849    
850    AC_ARG_ENABLE(plugin-dir,
851      [  --enable-plugin-dir
852                              Directory where the sampler shall look for potential plugins,
853                              that is 3rd party shared libraries that should be loaded by
854                              the sampler on startup. By default the sampler will search
855                              for plugins in the subdirectory "plugins" below its own
856                              library directory.
857                              (i.e. /usr/local/lib/linuxsampler/plugins)],
858      [config_plugin_dir="${enableval}"],
859      [config_plugin_dir="${libdir}/linuxsampler/plugins"]
860    )
861    AC_SUBST(config_plugin_dir)
862    
863    AC_ARG_ENABLE(default-instruments-db-location,
864      [  --enable-default-instruments-db-location
865                              Only when instruments DB feature is enabled: file name
866                              which shall be taken as default location of the
867                              instruments DB file. This location can still be
868                              overridden at runtime with a command line switch.
869                              (default: /var/lib/linuxsampler/instruments.db)],
870      [config_default_instruments_db_file="${enableval}"],
871      [config_default_instruments_db_file="/var/lib/linuxsampler/instruments.db"]
872    )
873    AC_DEFINE_UNQUOTED(
874        CONFIG_DEFAULT_INSTRUMENTS_DB_LOCATION,
875        "$config_default_instruments_db_file",
876        [Only when instruments DB feature is enabled: default location of the DB file.]
877    )
878    AC_SUBST(config_default_instruments_db_file)
879    
880    
881  ###########################################################################  ###########################################################################
882  # Automatic Benchmarks (to detect the best algorithms for the system)  # Automatic Benchmarks (to detect the best algorithms for the system)
# Line 856  if test "$config_signed_triang_algo" = " Line 911  if test "$config_signed_triang_algo" = "
911          echo "Call './configure --help' for further information or read configure.in."          echo "Call './configure --help' for further information or read configure.in."
912          exit -1;          exit -1;
913      fi      fi
914    else
915        case "$config_signed_triang_algo" in
916            intmath)
917                triang_signed=2 ;;
918            diharmonic)
919                triang_signed=3 ;;
920            intmathabs)
921                triang_signed=5 ;;
922        esac
923  fi  fi
924  AC_DEFINE_UNQUOTED(CONFIG_SIGNED_TRIANG_ALGO, ${triang_signed}, [Define signed triangular wave algorithm to be used.])  AC_DEFINE_UNQUOTED(CONFIG_SIGNED_TRIANG_ALGO, ${triang_signed}, [Define signed triangular wave algorithm to be used.])
925    
# Line 887  if test "$config_unsigned_triang_algo" = Line 951  if test "$config_unsigned_triang_algo" =
951          echo "Call './configure --help' for further information or read configure.in."          echo "Call './configure --help' for further information or read configure.in."
952          exit -1;          exit -1;
953      fi      fi
954    else
955        case "$config_unsigned_triang_algo" in
956            intmath)
957                triang_unsigned=2 ;;
958            diharmonic)
959                triang_unsigned=3 ;;
960            intmathabs)
961                triang_unsigned=5 ;;
962        esac
963  fi  fi
964  AC_DEFINE_UNQUOTED(CONFIG_UNSIGNED_TRIANG_ALGO, ${triang_unsigned}, [Define unsigned triangular wave algorithm to be used.])  AC_DEFINE_UNQUOTED(CONFIG_UNSIGNED_TRIANG_ALGO, ${triang_unsigned}, [Define unsigned triangular wave algorithm to be used.])
965    
# Line 918  AC_OUTPUT( \ Line 991  AC_OUTPUT( \
991      man/Makefile \      man/Makefile \
992      man/linuxsampler.1 \      man/linuxsampler.1 \
993      src/Makefile \      src/Makefile \
994        src/db/Makefile \
995      src/network/Makefile \      src/network/Makefile \
996      src/engines/Makefile \      src/engines/Makefile \
997      src/engines/gig/Makefile \      src/engines/gig/Makefile \
998      src/engines/common/Makefile \      src/engines/common/Makefile \
999      src/common/Makefile src/lib/Makefile \      src/common/Makefile \
     src/lib/fileloader/Makefile \  
     src/lib/fileloader/libgig/Makefile \  
1000      src/testcases/Makefile \      src/testcases/Makefile \
1001      src/drivers/Makefile \      src/drivers/Makefile \
1002      src/drivers/audio/Makefile \      src/drivers/audio/Makefile \
1003      src/drivers/midi/Makefile \      src/drivers/midi/Makefile \
1004        src/plugins/Makefile \
1005      linuxsampler.spec \      linuxsampler.spec \
1006      debian/Makefile \      debian/Makefile \
1007      Artwork/Makefile \      Artwork/Makefile \
1008      scripts/Makefile \      scripts/Makefile \
1009      osx/Makefile \      osx/Makefile \
1010      osx/LinuxSampler.xcode/Makefile \      osx/linuxsampler.xcodeproj/Makefile \
1011      Documentation/Makefile \      Documentation/Makefile \
1012      Documentation/Engines/Makefile \      Documentation/Engines/Makefile \
1013      Documentation/Engines/gig/Makefile \      Documentation/Engines/gig/Makefile \
# Line 942  AC_OUTPUT( \ Line 1015  AC_OUTPUT( \
1015      Doxyfile \      Doxyfile \
1016  )  )
1017    
1018    # resolve all nested variables in '${config_plugin_dir}'
1019    # (merely for providing a human readable summary below)
1020    while test $config_plugin_dir != `eval echo ${config_plugin_dir}` ; do
1021            config_plugin_dir=`eval echo ${config_plugin_dir}`
1022    done
1023    
1024    
1025  ###########################################################################  ###########################################################################
1026  # Output All Configuration Options  # Output All Configuration Options
# Line 984  echo "# Assert GS SysEx Checksum: ${conf Line 1063  echo "# Assert GS SysEx Checksum: ${conf
1063  echo "# Process Muted Channels: ${config_process_muted_channels}"  echo "# Process Muted Channels: ${config_process_muted_channels}"
1064  echo "# Process All-Notes-Off MIDI message: ${config_process_all_notes_off}"  echo "# Process All-Notes-Off MIDI message: ${config_process_all_notes_off}"
1065  echo "# Interpolate Volume: ${config_interpolate_volume}"  echo "# Interpolate Volume: ${config_interpolate_volume}"
1066    echo "# Instruments database support: ${config_instruments_db}"
1067    if test "$config_instruments_db" = "yes"; then
1068    echo "# Instruments DB default location: ${config_default_instruments_db_file}"
1069    fi
1070    echo "# Plugin Path: ${config_plugin_dir}"
1071  echo "#-------------------------------------------------------------------#"  echo "#-------------------------------------------------------------------#"
1072  echo "# Read './configure --help' or file 'configure.in' for details.     #"  echo "# Read './configure --help' or file 'configure.in' for details.     #"
1073  echo "#####################################################################"  echo "#####################################################################"

Legend:
Removed from v.1049  
changed lines
  Added in v.1432

  ViewVC Help
Powered by ViewVC