~ubuntu-branches/ubuntu/gutsy/gnupg2/gutsy

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-03-09 12:32:03 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070309123203-64xnl30ctoyv4pcv
Tags: 2.0.3-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
  - Build-depend on libcurl3-gnutls-dev
  - Include /doc files as done with gnupg
  - debian/rules: add doc/com-certs.pem to the docs for gpgsm
  - g10/call-agent.c: set DBG_ASSUAN to 0 to suppress a debug message
  - debian/README.Debian: remove note the gnupg2 isn't released yet.
  - debian/control: Change Maintainer/XSBC-Original-Maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
MSGMERGE=${GETTEXT_PREFIX}${MSGMERGE:-msgmerge}${GETTEXT_SUFFIX}
40
40
 
41
41
DIE=no
 
42
FORCE=
 
43
if test "$1" == "--force"; then
 
44
  FORCE=" --force"
 
45
  shift
 
46
fi
42
47
 
43
48
# ***** W32 build script *******
44
49
# Used to cross-compile for Windows.
198
203
$AUTOHEADER
199
204
echo "Running automake --gnu ..."
200
205
$AUTOMAKE --gnu;
201
 
echo "Running autoconf..."
202
 
$AUTOCONF
 
206
echo "Running autoconf${FORCE} ..."
 
207
$AUTOCONF${FORCE}
203
208
 
204
209
echo "You may now run \"./configure --sysconfdir=/etc --enable-maintainer-mode && make\"."