~ubuntu-branches/ubuntu/quantal/smplayer/quantal

« back to all changes in this revision

Viewing changes to zlib-1.2.6/contrib/pascal/zlibd32.mak

  • Committer: Package Import Robot
  • Author(s): Maia Kozheva, Maia Kozheva, Alessio Treglia
  • Date: 2012-04-14 12:01:57 UTC
  • mfrom: (20.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20120414120157-7yx90enjufwsc3fd
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
# Makefile for zlib
 
2
# For use with Delphi and C++ Builder under Win32
 
3
# Updated for zlib 1.2.x by Cosmin Truta
 
4
 
 
5
# ------------ Borland C++ ------------
 
6
 
 
7
# This project uses the Delphi (fastcall/register) calling convention:
 
8
LOC = -DZEXPORT=__fastcall -DZEXPORTVA=__cdecl
 
9
 
 
10
CC = bcc32
 
11
LD = bcc32
 
12
AR = tlib
 
13
# do not use "-pr" in CFLAGS
 
14
CFLAGS = -a -d -k- -O2 $(LOC)
 
15
LDFLAGS =
 
16
 
 
17
 
 
18
# variables
 
19
ZLIB_LIB = zlib.lib
 
20
 
 
21
OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
 
22
OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
 
23
OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
 
24
OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
 
25
 
 
26
 
 
27
# targets
 
28
all: $(ZLIB_LIB) example.exe minigzip.exe
 
29
 
 
30
.c.obj:
 
31
        $(CC) -c $(CFLAGS) $*.c
 
32
 
 
33
adler32.obj: adler32.c zlib.h zconf.h
 
34
 
 
35
compress.obj: compress.c zlib.h zconf.h
 
36
 
 
37
crc32.obj: crc32.c zlib.h zconf.h crc32.h
 
38
 
 
39
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
 
40
 
 
41
gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h
 
42
 
 
43
gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h
 
44
 
 
45
gzread.obj: gzread.c zlib.h zconf.h gzguts.h
 
46
 
 
47
gzwrite.obj: gzwrite.c zlib.h zconf.h gzguts.h
 
48
 
 
49
infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
 
50
 inffast.h inffixed.h
 
51
 
 
52
inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
 
53
 inffast.h
 
54
 
 
55
inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
 
56
 inffast.h inffixed.h
 
57
 
 
58
inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
 
59
 
 
60
trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
 
61
 
 
62
uncompr.obj: uncompr.c zlib.h zconf.h
 
63
 
 
64
zutil.obj: zutil.c zutil.h zlib.h zconf.h
 
65
 
 
66
example.obj: test/example.c zlib.h zconf.h
 
67
 
 
68
minigzip.obj: test/minigzip.c zlib.h zconf.h
 
69
 
 
70
 
 
71
# For the sake of the old Borland make,
 
72
# the command line is cut to fit in the MS-DOS 128 byte limit:
 
73
$(ZLIB_LIB): $(OBJ1) $(OBJ2)
 
74
        -del $(ZLIB_LIB)
 
75
        $(AR) $(ZLIB_LIB) $(OBJP1)
 
76
        $(AR) $(ZLIB_LIB) $(OBJP2)
 
77
 
 
78
 
 
79
# testing
 
80
test: example.exe minigzip.exe
 
81
        example
 
82
        echo hello world | minigzip | minigzip -d
 
83
 
 
84
example.exe: example.obj $(ZLIB_LIB)
 
85
        $(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
 
86
 
 
87
minigzip.exe: minigzip.obj $(ZLIB_LIB)
 
88
        $(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
 
89
 
 
90
 
 
91
# cleanup
 
92
clean:
 
93
        -del *.obj
 
94
        -del *.exe
 
95
        -del *.lib
 
96
        -del *.tds
 
97
        -del zlib.bak
 
98
        -del foo.gz
 
99