2014-04-04 22:14:01 +02:00
|
|
|
config BR2_PACKAGE_POSTGRESQL
|
|
|
|
bool "postgresql"
|
2015-03-17 23:06:27 +01:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2018-10-23 18:09:31 +02:00
|
|
|
depends on BR2_USE_WCHAR
|
2015-05-16 16:12:44 +02:00
|
|
|
# fails to build in a pure static linking scenario, and
|
|
|
|
# postgresql is unlikely to be used in a pure statically
|
|
|
|
# linked environment.
|
|
|
|
depends on !BR2_STATIC_LIBS
|
2014-04-04 22:14:01 +02:00
|
|
|
help
|
|
|
|
PostgreSQL is a powerful, open source object-relational
|
|
|
|
database system.
|
|
|
|
|
|
|
|
Enable the readline package to gain readline support in
|
2019-12-03 10:38:13 +01:00
|
|
|
psql (the command line interpreter), which offers
|
2014-04-04 22:14:01 +02:00
|
|
|
command history and edit functions.
|
|
|
|
|
|
|
|
Enable the zlib package to gain builtin compression for
|
|
|
|
archives with pg_dump and pg_restore.
|
|
|
|
|
|
|
|
http://www.postgresql.org
|
2015-05-16 16:12:44 +02:00
|
|
|
|
2018-10-23 18:09:31 +02:00
|
|
|
comment "postgresql needs a toolchain w/ dynamic library, wchar"
|
2018-04-05 09:34:35 +02:00
|
|
|
depends on BR2_USE_MMU
|
2018-10-23 18:09:31 +02:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
|