Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config 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. depends on !BR2_OPTIMIZE_FAST
  10. select BR2_PACKAGE_LIBOPENSSL_ENABLE_BLOWFISH if BR2_PACKAGE_LIBOPENSSL
  11. select BR2_PACKAGE_LIBOPENSSL_ENABLE_CAST if BR2_PACKAGE_LIBOPENSSL
  12. select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
  13. help
  14. PostgreSQL is a powerful, open source object-relational
  15. database system.
  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. Enable the zlib package to gain builtin compression for
  20. archives with pg_dump and pg_restore.
  21. http://www.postgresql.org
  22. if BR2_PACKAGE_POSTGRESQL
  23. config BR2_PACKAGE_POSTGRESQL_FULL
  24. bool "postgresql-full"
  25. help
  26. Build PostgreSQL, contrib, and documentation.
  27. endif
  28. comment "postgresql needs a toolchain w/ dynamic library, wchar"
  29. depends on BR2_USE_MMU
  30. depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
  31. comment "postgresql can't be built with Optimize for fast"
  32. depends on BR2_OPTIMIZE_FAST