1config BR2_PACKAGE_POSTGRESQL 2 bool "postgresql" 3 depends on BR2_USE_MMU # fork() 4 depends on BR2_USE_WCHAR 5 # fails to build in a pure static linking scenario, and 6 # postgresql is unlikely to be used in a pure statically 7 # linked environment. 8 depends on !BR2_STATIC_LIBS 9 select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL 10 select BR2_PACKAGE_LIBOPENSSL_ENABLE_CAST if BR2_PACKAGE_LIBOPENSSL 11 select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL 12 help 13 PostgreSQL is a powerful, open source object-relational 14 database system. 15 16 Enable the readline package to gain readline support in 17 psql (the command line interpreter), which offers 18 command history and edit functions. 19 20 Enable the zlib package to gain builtin compression for 21 archives with pg_dump and pg_restore. 22 23 http://www.postgresql.org 24 25if BR2_PACKAGE_POSTGRESQL 26 27config BR2_PACKAGE_POSTGRESQL_FULL 28 bool "postgresql-full" 29 help 30 Build PostgreSQL, contrib, and documentation. 31 32endif 33 34comment "postgresql needs a toolchain w/ dynamic library, wchar" 35 depends on BR2_USE_MMU 36 depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR 37