~ubuntu-branches/ubuntu/intrepid/libpng/intrepid-security

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-11-21 19:07:43 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20061121190743-wkt0yzs5uq2xoq10
Tags: 1.2.13-4
Removed drop_pass_width patch. Closes: #399499.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# a quick hack script to generate necessary files from 
 
3
# auto* tools.
 
4
#
 
5
# WARNING: if you run this you will change the versions
 
6
# of the tools which are used and, maybe, required!
 
7
        touch Makefile.am configure.ac
 
8
{
 
9
        echo "running libtoolize" >&2
 
10
        libtoolize --copy --automake
 
11
} && {
 
12
        echo "running aclocal" >&2
 
13
        aclocal
 
14
} && {
 
15
        echo "running autoheader [ignore the warnings]" >&2
 
16
        autoheader
 
17
} && {
 
18
        echo "running automake" >&2
 
19
        automake --foreign -a -c
 
20
} && {
 
21
        echo "running autoconf" >&2
 
22
        autoconf
 
23
} &&
 
24
        echo "autogen complete" >&2 ||
 
25
        echo "ERROR: autogen.sh failed, autogen is incomplete" >&2