e702a05d89
postgresql can't be built with BR2_OPTIMIZE_FAST: configure: error: do not put -ffast-math in CFLAGS Fixes: - http://autobuild.buildroot.org/results/106bb61bcff5d03e44d3e2e9149c76e6705606a5 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
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
|
|
depends on !BR2_OPTIMIZE_FAST
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_CAST if BR2_PACKAGE_LIBOPENSSL
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
|
|
help
|
|
PostgreSQL is a powerful, open source object-relational
|
|
database system.
|
|
|
|
Enable the readline package to gain readline support in
|
|
psql (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
|
|
|
|
if BR2_PACKAGE_POSTGRESQL
|
|
|
|
config BR2_PACKAGE_POSTGRESQL_FULL
|
|
bool "postgresql-full"
|
|
help
|
|
Build PostgreSQL, contrib, and documentation.
|
|
|
|
endif
|
|
|
|
comment "postgresql needs a toolchain w/ dynamic library, wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
|
|
|
|
comment "postgresql can't be built with Optimize for fast"
|
|
depends on !BR2_OPTIMIZE_FAST
|