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

Log of /libgig/trunk/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (annotate)
Sticky Revision:

Revision 4084 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jan 26 18:08:02 2024 UTC (2 months, 3 weeks ago) by schoenebeck
File length: 493 byte(s)
Diff to previous 2912 , to selected 1123
more 'make dist' rule updates


Revision 2912 - (view) (download) (annotate) - [select for diffs]
Modified Tue May 17 14:30:10 2016 UTC (7 years, 11 months ago) by schoenebeck
File length: 465 byte(s)
Diff to previous 2572 , to selected 1123
* 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).


Revision 2572 - (view) (download) (annotate) - [select for diffs]
Modified Thu May 22 12:14:04 2014 UTC (9 years, 10 months ago) by schoenebeck
File length: 368 byte(s)
Diff to previous 1174 , to selected 1123
* Added fork of libakai (this fork provides Linux support) which
  allows reading AKAI medias. Comes with two command line tools
  'akaidump' and 'akaiextract'. Also added a man page for each
  tool.


Revision 1174 - (view) (download) (annotate) - [select for diffs]
Modified Sun May 6 16:21:41 2007 UTC (16 years, 11 months ago) by schoenebeck
File length: 360 byte(s)
Diff to previous 1123
- forgot to commit Makefile.am with recent commit batch


Revision 1123 - (view) (download) (annotate) - [selected]
Modified Sat Mar 24 18:20:09 2007 UTC (17 years ago) by schoenebeck
File length: 356 byte(s)
Diff to previous 656
- forgot to include win32 files into release tarball(s)


Revision 656 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jun 15 20:39:11 2005 UTC (18 years, 10 months ago) by schoenebeck
File length: 350 byte(s)
Diff to previous 652 , to selected 1123
include KDevelop project file with 'make dist'


Revision 652 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jun 15 13:57:29 2005 UTC (18 years, 10 months ago) by schoenebeck
File length: 320 byte(s)
Diff to previous 634 , to selected 1123
require automake (>= 1.5) for 'make -f Makefile.cvs'
(mandatory for 'dist-bzip2' automake option)


Revision 634 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jun 12 13:58:24 2005 UTC (18 years, 10 months ago) by schoenebeck
File length: 256 byte(s)
Diff to previous 310 , to selected 1123
- include debian/ directory on 'make dist'
- create a bzip2 tarball on 'make dist'


Revision 310 - (view) (download) (annotate) - [select for diffs]
Modified Fri Nov 26 00:14:50 2004 UTC (19 years, 4 months ago) by capela
File length: 218 byte(s)
Diff to previous 196 , to selected 1123
* gig.h oneliner forward declaration of gig::Region.
* Fixed man pages automake install rule.
* Doxygen documentation fix (make docs).


Revision 196 - (view) (download) (annotate) - [select for diffs]
Modified Sat Jul 10 09:52:24 2004 UTC (19 years, 9 months ago) by schoenebeck
File length: 217 byte(s)
Diff to previous 186 , to selected 1123
* renamed 'libgig.pc.in' -> 'gig.pc.in' and renamed pkg-config lib name
  'libgig' -> 'gig' as it's common practice to omit the 'lib' prefix


Revision 186 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jul 7 12:03:54 2004 UTC (19 years, 9 months ago) by schoenebeck
File length: 220 byte(s)
Diff to previous 168 , to selected 1123
* added support for generating Debian packages
* version of shared library can be set in configure.in


Revision 168 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jul 2 19:37:09 2004 UTC (19 years, 9 months ago) by capela
File length: 469 byte(s)
Diff to previous 58 , to selected 1123
* packaging changes:
  - added libgig.spec and libgig.pc package configurations.
  - header files included on installation.
  - autotools-generated files removed from CVS repository.


Revision 58 - (view) (download) (annotate) - [select for diffs]
Modified Mon May 3 14:16:59 2004 UTC (19 years, 11 months ago) by schoenebeck
File length: 472 byte(s)
Diff to previous 11 , to selected 1123
* libtoolized libgig
* added man pages for the command line tools
  (gigextract, gigdump, dlsdump, rifftree)
* minor preparations for libgig release 0.7.0 (updated Changelog, etc.)


Revision 11 - (view) (download) (annotate) - [select for diffs]
Modified Sun Nov 16 17:47:00 2003 UTC (20 years, 5 months ago) by schoenebeck
File length: 215 byte(s)
Diff to previous 2 , to selected 1123
* src/gig.cpp: fixed bug in decompression algorithm which caused it not to
  detect the end of a stream
* various endian corrections (successfully tested now on ppc)
* minor adjustments to avoid compile errors on some systems
  (using now pow() instead of powl() and --pedantic g++ compiler switch)
* src/RIFF.cpp, src/RIFF.h: added additional API documentation


Revision 2 - (view) (download) (annotate) - [select for diffs]
Added Sat Oct 25 20:15:04 2003 UTC (20 years, 5 months ago) by schoenebeck
File length: 146 byte(s)
Diff to selected 1123
Initial revision


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

  ViewVC Help
Powered by ViewVC