/[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 1399 by schoenebeck, Thu Oct 11 18:53:29 2007 UTC revision 1424 by schoenebeck, Sun Oct 14 22:00:17 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.8cvs  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.8cvs Line 24  LINUXSAMPLER_RELEASE_BUILD=0.8cvs
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 317  fi Line 317  fi
317  # Checks for various DLL libraries  # Checks for various DLL libraries
318    
319  # Check presence of libgig  # Check presence of libgig
320  libgig_version="3.1.1"  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 384  if test "$config_asm" = "yes"; then Line 384  if test "$config_asm" = "yes"; then
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="$enableval"],    [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.])

Legend:
Removed from v.1399  
changed lines
  Added in v.1424

  ViewVC Help
Powered by ViewVC