/[svn]/libgig/trunk/Makefile.am
ViewVC logotype

Annotation of /libgig/trunk/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2912 - (hide annotations) (download)
Tue May 17 14:30:10 2016 UTC (7 years, 11 months ago) by schoenebeck
File size: 465 byte(s)
* gig.cpp/.h: GIG FORMAT EXTENSION: Added support for saving gig file
  larger than 4 GB as one single monolithic gig file. A new custom RIFF
  chunk "FFmt" was added to distinguish such monolithic large .gig files
  from old ones which were splitted over several (.gx01, .gx02, ...)
  "extension" files before.
* DLS.cpp/.h: Sample class: wave pool offsets are now 64 bits (to allow
  support for files larger than 4 GB).
* RIFF.cpp/.h: Addded support for RIFF files larger than 4 GB, by default
  the required internal RIFF file offset size is automatically detected
  (that is RIFF files < 4 GB automatically use 32 bit offsets while
  files >= 4 GB automatically use 64 bit offsets), a particular offset
  size can be forced with a new option added to the RIFF File constructor
  though.
* RIFF.cpp/.h: When saving a modified, grown RIFF file, the temporary file
  size during Save() operation will no longer be larger than the final
  grown file size.
* Automake: Set environment variable GCC_COLORS=auto to allow GCC to auto
  detect whether it (sh/c)ould output its messages in color.
* Bumped version (4.0.0.svn3).

1 schoenebeck 652 # require automake >= 1.5 (mandatory for option dist-bzip2)
2     AUTOMAKE_OPTIONS = 1.5 dist-bzip2
3 schoenebeck 11
4 schoenebeck 1174 SUBDIRS = doc man src debian win32 osx
5 schoenebeck 634
6 schoenebeck 11 # to prevent compile errors on some systems
7     AM_CXXFLAGS = -pedantic
8 schoenebeck 58
9 schoenebeck 2912 # let GCC auto detect whether it (sh/c)ould output its messages in color
10     export GCC_COLORS=auto
11    
12 capela 168 pkgconfigdir = $(libdir)/pkgconfig
13 schoenebeck 2572 pkgconfig_DATA = gig.pc akai.pc
14 capela 168
15 schoenebeck 656 EXTRA_DIST = libgig.kdevelop
16    
17 capela 310 docs: Doxyfile
18 capela 168 @echo '*** Running doxygen ***'
19     doxygen Doxyfile

  ViewVC Help
Powered by ViewVC