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