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

Annotation of /linuxsampler/trunk/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log


Revision 12 - (hide annotations) (download)
Sun Nov 16 19:01:50 2003 UTC (20 years, 4 months ago) by schoenebeck
Original Path: linuxsampler/trunk/configure.in
File size: 486 byte(s)
* src/gig.cpp: fixed bug in decompression algorithm which caused it not to
  detect the end of a stream and let the disk streams reload forever also
  resulting in strange sounds at the end of disk voices (concerned only
  playback of compressed gig files)
* src/audiothread.cpp: deallocation of voices when they reached the end of
  playback (thus e.g. when sustain pedal is pressed and a disk stream
  reached it's end)
* various endian corrections needed for non intel systems
* introduced debug level, you can set the debug level and thus the
  verbosity of LinuxSampler in src/global.h

1 schoenebeck 9 AC_INIT(configure.in)
2 schoenebeck 12 AC_C_BIGENDIAN
3 schoenebeck 9 AC_CANONICAL_SYSTEM
4    
5     echo -n "Checking whether x86 architecture... "
6     def_arch_x86=0
7     case $target_cpu in
8     "i386" | "i486" | "i586" | "i686" | "i786")
9     echo "yes"
10     def_arch_x86=1;;
11     *)
12     echo "no";;
13     esac
14     AC_DEFINE_UNQUOTED(ARCH_X86,$def_arch_x86,[Define to 1 if you build for x86 architecture.])
15    
16     AM_CONFIG_HEADER(config.h)
17     AM_INIT_AUTOMAKE(linuxsampler, 0.1)
18    
19     AC_LANG_CPLUSPLUS
20     AC_PROG_CXX
21     AM_PROG_LIBTOOL
22    
23     AC_OUTPUT(Makefile src/Makefile)

  ViewVC Help
Powered by ViewVC