~ubuntu-branches/ubuntu/wily/xmms2/wily

« back to all changes in this revision

Viewing changes to src/plugins/gme/gme/blargg_config.h

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2008-07-04 16:23:34 UTC
  • mfrom: (1.1.5 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080704162334-b3esbkcapt8wbrk4
Tags: 0.5DrLecter-2ubuntu1
* Merge from debian unstable (LP: #241098), remaining changes:
  + debian/control:
    + Update Maintainer field
    + add lpia to xmms2-plugin-alsa supported architectures
    + Added liba52-0.7.4-dev to build depends
  + debian/rules: Added patch, patch-stamp and unpatch
  + changed 01_gcc4.3.patch:
    + src/include/xmmsclient/xmmsclient++/helpers.h: Added #include <climits>
* New upstream relase fixes LP: #212566, #222341

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Library configuration. Modify this file as necessary.
 
2
 
 
3
#ifndef BLARGG_CONFIG_H
 
4
#define BLARGG_CONFIG_H
 
5
 
 
6
// Uncomment to use zlib for transparent decompression of gzipped files
 
7
//#define HAVE_ZLIB_H
 
8
 
 
9
// Uncomment to support only the listed game music types. See gme_type_list.cpp
 
10
// for a list of all types.
 
11
//#define GME_TYPE_LIST gme_nsf_type, gme_gbs_type
 
12
 
 
13
// Uncomment to enable platform-specific optimizations
 
14
//#define BLARGG_NONPORTABLE 1
 
15
 
 
16
// Uncomment to use faster, lower quality sound synthesis
 
17
//#define BLIP_BUFFER_FAST 1
 
18
 
 
19
// Uncomment if automatic byte-order determination doesn't work
 
20
//#define BLARGG_BIG_ENDIAN 1
 
21
 
 
22
// Uncomment if you get errors in the bool section of blargg_common.h
 
23
//#define BLARGG_COMPILER_HAS_BOOL 1
 
24
 
 
25
// Use standard config.h if present
 
26
#ifdef HAVE_CONFIG_H
 
27
        #include "config.h"
 
28
#endif
 
29
 
 
30
#endif