~ubuntu-branches/ubuntu/trusty/libsdl1.2/trusty

« back to all changes in this revision

Viewing changes to src/main/macos/SDL.shlib.r

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2009-12-08 01:50:15 UTC
  • mfrom: (2.1.6 experimental)
  • Revision ID: james.westby@ubuntu.com-20091208015015-mr68dcbbctrhi5at
Tags: 1.2.14-1ubuntu1
* Merge from Debian experimental, remaining changes:
  + debian/control:
    + add libglu1-mesa-dev as a build dependency, so SDL gets built
      with OpenGL support (LP: #328932)
    - dropped build-depends on libarts1-dev, libartsc0-dev. These
      packages will disappear as part of the arts removal
      (LP: #320915)
    - Removed Package: libsdl1.2debian-arts section entirely
    - dropped depends on libsdl1.2debian-arts (= ${binary:Version})
      for libsdl1.2-debian
    - dropped recommends on libartsc0-dev for libsdl1.2-dev
    - Remove svgalib support.
  + debian/rules:
    + set --enable-arts-shared=no and --enable-arts=no in confflags
    - removed --disable-audio-arts from udeb_confflags
    - dropped arts from FLAVOURS=
    + Link using -Wl,-Bsymbolic-functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#ifndef __TYPES_R__
3
 
#include "Types.r"
4
 
#endif
5
 
 
6
 
#ifndef __BALLOONS_R__
7
 
#include "Balloons.r"
8
 
#endif
9
 
 
10
 
#define VERSION_MAJOR           1
11
 
#define VERSION_MINOR           2
12
 
#define REVISION                13
13
 
 
14
 
#define STATE                           release         /* development | alpha | beta | release */
15
 
#define RELEASE_NO              0                             /* number after letter, or zero for release */
16
 
#define COUNTRY                           verUS
17
 
 
18
 
#define VERSION_STRING          "1.2.13"
19
 
 
20
 
#define NAME                                          "SDL"
21
 
#define SHORT_DESCRIPTION               "Simple DirectMedia Layer by Sam Lantinga"
22
 
#define LONG_DESCRIPTION                "A cross-platform multimedia library.\n\nhttp://www.libsdl.org"
23
 
 
24
 
resource 'vers' (1) {
25
 
        VERSION_MAJOR,
26
 
        (VERSION_MINOR << 4) | REVISION,
27
 
        STATE,
28
 
        RELEASE_NO,
29
 
        COUNTRY,
30
 
        VERSION_STRING,
31
 
        VERSION_STRING
32
 
};
33
 
 
34
 
resource 'vers' (2) {
35
 
        VERSION_MAJOR,
36
 
        (VERSION_MINOR << 4) | REVISION,
37
 
        STATE,
38
 
        RELEASE_NO,
39
 
        COUNTRY,
40
 
        VERSION_STRING,
41
 
  SHORT_DESCRIPTION
42
 
};
43
 
 
44
 
 
45
 
        /* Extension Manager info */
46
 
data 'CCI�' (128) {             
47
 
        NAME "\n\n"
48
 
                LONG_DESCRIPTION
49
 
};
50
 
 
51
 
        /* Finder help balloon */
52
 
resource 'hfdr' (kHMHelpID) {
53
 
        HelpMgrVersion,
54
 
        hmDefaultOptions,
55
 
        0,
56
 
        0,
57
 
        {       
58
 
                HMStringItem
59
 
                {
60
 
                        NAME "\n\n"
61
 
                                LONG_DESCRIPTION
62
 
                }
63
 
        }
64
 
        
65
 
};
66
 
 
 
1
 
 
 
b'#ifndef __TYPES_R__'
 
 
b'#include "Types.r"'
 
 
b'#endif'
 
 
b'#ifndef __BALLOONS_R__'
 
 
b'#include "Balloons.r"'
 
 
b'#endif'
 
 
b'#define VERSION_MAJOR \t\t1'
 
 
b'#define VERSION_MINOR \t\t2'
 
 
b'#define REVISION     \t\t13'
 
 
b'#define STATE\t    \t\t\trelease\t\t/* development | alpha | beta | release */'
 
 
b'#define RELEASE_NO     \t\t0\t\t\t      /* number after letter, or zero for release */'
 
 
b'#define COUNTRY\t\t\t\t  verUS'
 
 
b'#define VERSION_STRING \t\t"1.2.13"'
 
 
b'#define NAME\t\t\t\t\t      "SDL"'
 
 
b'#define SHORT_DESCRIPTION\t\t"Simple DirectMedia Layer by Sam Lantinga"'
 
 
b'#define LONG_DESCRIPTION\t\t"A cross-platform multimedia library.\\n\\nhttp://www.libsdl.org"'
 
 
b"resource 'vers' (1) {"
 
 
b'\tVERSION_MAJOR,'
 
 
b'\t(VERSION_MINOR << 4) | REVISION,'
 
 
b'\tSTATE,'
 
 
b'\tRELEASE_NO,'
 
 
b'\tCOUNTRY,'
 
 
b'\tVERSION_STRING,'
 
 
b'\tVERSION_STRING'
 
 
b'};'
 
 
b"resource 'vers' (2) {"
 
 
b'\tVERSION_MAJOR,'
 
 
b'\t(VERSION_MINOR << 4) | REVISION,'
 
 
b'\tSTATE,'
 
 
b'\tRELEASE_NO,'
 
 
b'\tCOUNTRY,'
 
 
b'\tVERSION_STRING,'
67
2
 SHORT_DESCRIPTION
 
 
b'};'
 
 
b'\t/* Extension Manager info */'
 
 
b"data 'CCI\x81' (128) {\t\t"
 
 
b'\tNAME "\\n\\n"'
 
 
b'\t\tLONG_DESCRIPTION'
 
 
b'};'
 
 
b'\t/* Finder help balloon */'
 
 
b"resource 'hfdr' (kHMHelpID) {"
 
 
b'\tHelpMgrVersion,'
 
 
b'\thmDefaultOptions,'
 
 
b'\t0,'
 
 
b'\t0,'
 
 
b'\t{\t'
 
 
b'\t\tHMStringItem'
 
 
b'\t\t{'
 
 
b'\t\t\tNAME "\\n\\n"'
 
 
b'\t\t\t\tLONG_DESCRIPTION'
 
 
b'\t\t}'
 
 
b'\t}'
 
 
b'\t'
 
 
b'};'
 
 
b'\\ No newline at end of file'