e75f6c4e9d
Upstream removed support for non-wchar toolchains:
85feb77aa0
Propagate the new dependency to other packages.
Fixes
http://autobuild.buildroot.net/results/b73/b73342a39167ed7f293224d4e3b23dde691b9abf/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
[Thomas: also propagate to the php, qt and qt5base packages.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
25 lines
780 B
Plaintext
25 lines
780 B
Plaintext
config BR2_PACKAGE_POSTGRESQL
|
|
bool "postgresql"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_USE_WCHAR
|
|
# 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
|
|
help
|
|
PostgreSQL is a powerful, open source object-relational
|
|
database system.
|
|
|
|
Enable the readline package to gain readline support in
|
|
pgsql (the command line interpreter), which offers
|
|
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
|
|
|
|
comment "postgresql needs a toolchain w/ dynamic library, wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
|