~ubuntu-branches/ubuntu/jaunty/transmission/jaunty-security

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2008-11-28 15:33:48 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20081128153348-it70trfnxiroblmc
Tags: 1.40-0ubuntu1
* New upstream release (LP: #302672)
  - Tracker communication uses fewer resources
  - More accurate bandwidth limits
  - Reduce disk fragmentation by preallocating files (LP: #287726)
  - Stability, security and performance improvements to the RPC /
    Web UI server (closes LP: #290423)
  - Support compression when serving Web UI and RPC responses
  - Simplify the RPC whitelist
  - Fix bug that prevented handshakes with encrypted BitComet peers
  - Fix 1.3x bug that could re-download some data unnecessarily
    (LP: #295040)
  - Option to automatically update the blocklist weekly
  - Added off-hour bandwidth scheduling
  - Simplify file/priority selection in the details dialog
  - Fix a couple of crashes
  - New / updated translations
  - Don't inhibit hibernation by default (LP: #292929)
  - Use "close" animation when sending to notification area (LP: #130811)
  - Fix resize problems (LP: #269872)
  - Support "--version" option when launching from command line
    (LP: #292011)
  - Correctly parse announce URLs that have leading or trailing
    spaces (LP: #262411)
  - Display an error when "Open Torrent" fails (LP: #281463)
* Dropped 10_fix_crasher_from_upstream.dpatch: Fix is in this
  upstream release.
* debian/control: Don't just build-depend on libcurl-dev, which is
  a virtual package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
srcdir=`dirname $0`
 
3
test -z "$srcdir" && srcdir=.
 
4
 
 
5
ORIGDIR=`pwd`
 
6
cd "$srcdir"
 
7
PROJECT=Transmission
 
8
 
 
9
GETTEXTIZE="glib-gettextize"
 
10
$GETTEXTIZE --version < /dev/null > /dev/null 2>&1
 
11
if test $? -ne 0; then
 
12
    GETTEXTIZE=""
 
13
fi
 
14
 
 
15
LIBTOOLIZE=libtoolize
 
16
if libtoolize --help >/dev/null 2>&1
 
17
then
 
18
  :
 
19
elif glibtoolize --help >/dev/null 2>&1
 
20
then
 
21
  LIBTOOLIZE=glibtoolize
 
22
fi
 
23
export LIBTOOLIZE
 
24
 
 
25
autoreconf -fi -I m4
 
26
 
 
27
if test "$GETTEXTIZE"; then
 
28
  echo "Creating aclocal.m4 ..."
 
29
  test -r aclocal.m4 || touch aclocal.m4
 
30
  echo "Running $GETTEXTIZE...  Ignore non-fatal messages."
 
31
  echo "no" | $GETTEXTIZE --force --copy
 
32
  echo "Making aclocal.m4 writable ..."
 
33
  test -r aclocal.m4 && chmod u+w aclocal.m4
 
34
  echo "Running intltoolize..."
 
35
  intltoolize --copy --force --automake
 
36
fi
 
37
 
 
38
cd "$ORIGDIR" || exit $?
 
39
 
 
40
if test -z "$AUTOGEN_SUBDIR_MODE"; then
 
41
        echo Running $srcdir/configure --enable-maintainer-mode "$@"
 
42
        $srcdir/configure --enable-maintainer-mode "$@"
 
43
 
 
44
        echo 
 
45
        echo "Now type 'make' to compile $PROJECT."
 
46
fi
 
47