~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to config/missing

Tags: upstream-8.4.0
ImportĀ upstreamĀ versionĀ 8.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
 
3
 
# $PostgreSQL: pgsql/config/missing,v 1.4 2006/03/11 04:38:28 momjian Exp $
 
3
# $PostgreSQL: pgsql/config/missing,v 1.5 2009/06/23 03:46:00 tgl Exp $
4
4
 
5
5
# This is *not* the GNU `missing' script, although it is similar in
6
6
# concept. You can call it from the makefiles to get consistent
17
17
WARNING: \`$1' is missing on your system. You should only need it
18
18
if you changed the file \`$input'; these changes will not take effect.
19
19
You can get $1 from a GNU mirror site.
20
 
***"
 
20
***" >&2
21
21
            echo "touch $output"
22
22
            touch "$output"
23
23
            exit 0
28
28
file \`$output'. You can either get $1 from a GNU mirror site
29
29
or download an official distribution of PostgreSQL, which contains
30
30
pre-packaged $1 output.
31
 
***"
 
31
***" >&2
32
32
            exit 1
33
33
        fi
34
34
        ;;
 
35
 
 
36
    perl)
 
37
        # `missing perl'
 
38
        echo "\
 
39
***
 
40
ERROR: Perl is missing on your system. It is needed unless you are building
 
41
from an unmodified official distribution of PostgreSQL.
 
42
***" >&2
 
43
        exit 1
 
44
        ;;
 
45
 
 
46
    *)
 
47
        # `missing something-or-other'
 
48
        echo "\
 
49
***
 
50
ERROR: \`$1' is missing on your system.
 
51
***" >&2
 
52
        exit 1
 
53
        ;;
35
54
esac