~ubuntu-branches/debian/jessie/smplayer/jessie

« back to all changes in this revision

Viewing changes to zlib-1.2.6/as400/compile.clp

  • Committer: Package Import Robot
  • Author(s): Maia Kozheva, Maia Kozheva, Alessio Treglia
  • Date: 2012-04-14 12:01:57 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20120414120157-mndwobcslgisomso
Tags: 0.8.0-1
[ Maia Kozheva ]
* New upstream release:
  - Changes since 0.7.1:
    + A toolbar editor has been added. Now it's possible to select the
      buttons and controls that want to appear in the toolbars.
    + New video filters: gradfun, blur and sharpen.
    + Now it's possible to change the GUI (default, mini, mpc) at runtime,
      no restart required.
    + sub files from opensubtitles should work again.
    + (Youtube) Recognize short urls (like this one:
      http://y2u.be/F5OcZBVPwOA)
    + Better support for chapters in video files.
    + Bug fix: remote m3u files work from the favorites menu or command line.
    + Internal changes in the single instance option (switch to 
      QtSingleApplication).
  - Fixes since 0.7.0:
    + SMPlayer took more than 10 seconds to show when running for the very
      first time.
    + The links to download subtitles from Opensubtitles were wrong.
    + SMPlayer crashed in the favorite editor when trying to select a file
      if the KDE open dialog was used.
  - Changes since 0.7.0:
    + By default the screenshots are saved in the user's pictures folder
      instead of the SMPlayer's config folder.
    + Now it's possible to change the opensubtitles server.
    + Youtube: seeking is slow with flv videos, so now flv videos have the
      lowest priority.
    + Youtube: now it's possible to search and download videos from youtube.
      This is provided by an external application (in linux you have to
      install an independent package: smtube).
* debian/copyright:
  - Rewrite according to DEP-5 specification.
* debian/control:
  - Depend on mplayer2 | mplayer. (Closes: #638279)
  - Update Standards-Version to 3.9.3.
* Remove debian/patches/handle_local_urls.diff, merged upstream.

[ Alessio Treglia ]
* Mention smplayer is also a front-end for MPlayer2.
* Fix small typo in the description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************************************/
 
2
/*                                                                            */
 
3
/*  ZLIB                                                                      */
 
4
/*                                                                            */
 
5
/*    Compile sources into modules and link them into a service program.      */
 
6
/*                                                                            */
 
7
/******************************************************************************/
 
8
 
 
9
             PGM
 
10
 
 
11
/*      Configuration adjustable parameters.                                  */
 
12
 
 
13
             DCL        VAR(&SRCLIB) TYPE(*CHAR) LEN(10) +
 
14
                          VALUE('ZLIB')                         /* Source library. */
 
15
             DCL        VAR(&SRCFILE) TYPE(*CHAR) LEN(10) +
 
16
                          VALUE('SOURCES')                      /* Source member file. */
 
17
             DCL        VAR(&CTLFILE) TYPE(*CHAR) LEN(10) +
 
18
                          VALUE('TOOLS')                        /* Control member file. */
 
19
 
 
20
             DCL        VAR(&MODLIB) TYPE(*CHAR) LEN(10) +
 
21
                          VALUE('ZLIB')                         /* Module library. */
 
22
 
 
23
             DCL        VAR(&SRVLIB) TYPE(*CHAR) LEN(10) +
 
24
                          VALUE('LGPL')                         /* Service program library. */
 
25
 
 
26
             DCL        VAR(&CFLAGS) TYPE(*CHAR) +
 
27
                          VALUE('OPTIMIZE(40)')                 /* Compile options. */
 
28
 
 
29
             DCL        VAR(&TGTRLS) TYPE(*CHAR) +
 
30
                          VALUE('V5R3M0')                       /* Target release. */
 
31
 
 
32
 
 
33
/*      Working storage.                                                      */
 
34
 
 
35
             DCL        VAR(&CMDLEN) TYPE(*DEC) LEN(15 5) VALUE(300)    /* Command length. */
 
36
             DCL        VAR(&CMD) TYPE(*CHAR) LEN(512)
 
37
             DCL        VAR(&FIXDCMD) TYPE(*CHAR) LEN(512)
 
38
 
 
39
 
 
40
/*      Compile sources into modules.                                         */
 
41
 
 
42
             CHGVAR     VAR(&FIXDCMD) VALUE('CRTCMOD' *BCAT &CFLAGS *BCAT      +
 
43
                        'SYSIFCOPT(*IFS64IO)' *BCAT                            +
 
44
                        'DEFINE(''_LARGEFILE64_SOURCE''' *BCAT                 +
 
45
                        '''_LFS64_LARGEFILE=1'') TGTRLS(' *TCAT &TGTRLS *TCAT  +
 
46
                        ') SRCFILE(' *TCAT &SRCLIB *TCAT '/' *TCAT             +
 
47
                        &SRCFILE *TCAT ') MODULE(' *TCAT &MODLIB *TCAT '/')
 
48
 
 
49
 
 
50
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'ADLER32)')
 
51
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
52
 
 
53
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'COMPRESS)')
 
54
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
55
 
 
56
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'CRC32)')
 
57
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
58
 
 
59
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'DEFLATE)')
 
60
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
61
 
 
62
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'GZCLOSE)')
 
63
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
64
 
 
65
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'GZLIB)')
 
66
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
67
 
 
68
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'GZREAD)')
 
69
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
70
 
 
71
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'GZWRITE)')
 
72
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
73
 
 
74
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'INFBACK)')
 
75
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
76
 
 
77
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'INFFAST)')
 
78
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
79
 
 
80
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'INFLATE)')
 
81
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
82
 
 
83
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'INFTREES)')
 
84
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
85
 
 
86
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'TREES)')
 
87
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
88
 
 
89
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'UNCOMPR)')
 
90
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
91
 
 
92
             CHGVAR     VAR(&CMD) VALUE(&FIXDCMD *TCAT 'ZUTIL)')
 
93
             CALL       PGM(QCMDEXC) PARM(&CMD &CMDLEN)
 
94
 
 
95
 
 
96
/*      Link modules into a service program.                                  */
 
97
 
 
98
             CRTSRVPGM  SRVPGM(&SRVLIB/ZLIB) +
 
99
                          MODULE(&MODLIB/ADLER32     &MODLIB/COMPRESS    +
 
100
                                 &MODLIB/CRC32       &MODLIB/DEFLATE     +
 
101
                                 &MODLIB/GZCLOSE     &MODLIB/GZLIB       +
 
102
                                 &MODLIB/GZREAD      &MODLIB/GZWRITE     +
 
103
                                 &MODLIB/INFBACK     &MODLIB/INFFAST     +
 
104
                                 &MODLIB/INFLATE     &MODLIB/INFTREES    +
 
105
                                 &MODLIB/TREES       &MODLIB/UNCOMPR     +
 
106
                                 &MODLIB/ZUTIL)                          +
 
107
                          SRCFILE(&SRCLIB/&CTLFILE) SRCMBR(BNDSRC)       +
 
108
                          TEXT('ZLIB 1.2.6') TGTRLS(&TGTRLS)
 
109
 
 
110
             ENDPGM