diff options
author | rubidium <rubidium@openttd.org> | 2010-10-27 16:42:20 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-10-27 16:42:20 +0000 |
commit | 59519edd344b3e9fa7d8f9f768563e8533d3760b (patch) | |
tree | 3c68e8041adb9395345d0330e80b36686d0d8e02 /os/debian | |
parent | 5ad2265c1d7f36d17ac157bd4e5e722a6a2355d3 (diff) | |
download | openttd-59519edd344b3e9fa7d8f9f768563e8533d3760b.tar.xz |
(svn r21044) -Feature: XZ/LZMA2 savegame support. New default reduces savegame size by 10 to 30% with slightly more CPU usage. With maximum settings it reduces savegame size by 20 to 30%, but that takes 7 to 14 times longer. Map saving + downloading takes, on average, 5% less.
Diffstat (limited to 'os/debian')
-rw-r--r-- | os/debian/control | 2 | ||||
-rwxr-xr-x | os/debian/rules | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/debian/control b/os/debian/control index d971a3899..de22a807a 100644 --- a/os/debian/control +++ b/os/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Matthijs Kooijman <matthijs@stdin.nl> Uploaders: Jordi Mallach <jordi@debian.org> DM-Upload-Allowed: yes -Build-Depends: debhelper (>= 7.0.50), libsdl-dev, zlib1g-dev, libpng-dev, libfreetype6-dev, libfontconfig-dev, libicu-dev, liblzo2-dev +Build-Depends: debhelper (>= 7.0.50), libsdl-dev, zlib1g-dev, libpng-dev, libfreetype6-dev, libfontconfig-dev, libicu-dev, liblzma-dev, liblzo2-dev Standards-Version: 3.8.4 Vcs-Browser: http://git.debian.org/?p=collab-maint/openttd.git Vcs-Git: git://git.debian.org/collab-maint/openttd.git diff --git a/os/debian/rules b/os/debian/rules index 5b852fbe1..92056a2bc 100755 --- a/os/debian/rules +++ b/os/debian/rules @@ -17,7 +17,7 @@ endif # to be explicit about the dependencies, in case we're not running in a # clean build root. override_dh_auto_configure: - ./configure $(CROSS) --prefix-dir=/usr --install-dir=debian/openttd --without-allegro --with-zlib --with-sdl --with-png --with-freetype --with-fontconfig --with-icu --with-liblzo2 --without-iconv --disable-strip CFLAGS="$(CFLAGS) -g" + ./configure $(CROSS) --prefix-dir=/usr --install-dir=debian/openttd --without-allegro --with-zlib --with-sdl --with-png --with-freetype --with-fontconfig --with-icu --with-liblzo2 --with-lzma --without-iconv --disable-strip CFLAGS="$(CFLAGS) -g" # Do some extra installation override_dh_auto_install: |