fix another dependency bug introduced by [2333]
[openwrt/svn-archive/archive.git] / openwrt / package / postgresql / Config.in
1 config BR2_COMPILE_POSTGRESQL
2 bool
3 default n
4 depends BR2_PACKAGE_LIBPQ
5
6 config BR2_PACKAGE_LIBPQ
7 prompt "libpq............................. PostgreSQL client library"
8 tristate
9 default m if CONFIG_DEVEL
10 select BR2_COMPILE_POSTGRESQL
11 help
12 PostgreSQL is an object-relational database management system (ORDBMS)
13 based on POSTGRES, Version 4.2, developed at the University of
14 California at Berkeley Computer Science Department. POSTGRES pioneered
15 many concepts that only became available in some commercial database
16 systems much later.
17
18 PostgreSQL is an open-source descendant of this original Berkeley code.
19 It supports SQL92 and SQL99 and offers many modern features:
20
21 * complex queries
22 * foreign keys
23 * triggers
24 * views
25 * transactional integrity
26 * multiversion concurrency control
27
28 http://www.postgresql.org/
29
30 This package contains the shared client library, needed by other programs.
31
32 config BR2_PACKAGE_PGSQL_CLI
33 prompt "pgsql-cli....................... Command Line Interface (CLI) to PostgreSQL databases"
34 tristate
35 default m if CONFIG_DEVEL
36 depends BR2_PACKAGE_LIBPQ
37 help
38 PostgreSQL is an object-relational database management system (ORDBMS)
39 based on POSTGRES, Version 4.2, developed at the University of
40 California at Berkeley Computer Science Department. POSTGRES pioneered
41 many concepts that only became available in some commercial database
42 systems much later.
43
44 PostgreSQL is an open-source descendant of this original Berkeley code.
45 It supports SQL92 and SQL99 and offers many modern features:
46
47 * complex queries
48 * foreign keys
49 * triggers
50 * views
51 * transactional integrity
52 * multiversion concurrency control
53
54 http://www.postgresql.org/
55
56 This package contains a terminal-based front-end to PostgreSQL. It enables
57 you to type in queries interactively, issue them to PostgreSQL, and see the
58 query results. Alternatively, input can be from a file. In addition, it
59 provides a number of meta-commands and various shell-like features to
60 facilitate writing scripts and automating a wide variety of tasks.
61