Config.in 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. 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. Enable the readline package to gain readline support in
  16. psql (the command line interpreter), which offers
  17. command history and edit functions.
  18. Enable the zlib package to gain builtin compression for
  19. archives with pg_dump and pg_restore.
  20. http://www.postgresql.org
  21. if BR2_PACKAGE_POSTGRESQL
  22. config BR2_PACKAGE_POSTGRESQL_FULL
  23. bool "postgresql-full"
  24. help
  25. Build PostgreSQL, contrib, and documentation.
  26. endif
  27. comment "postgresql needs a toolchain w/ dynamic library, wchar"
  28. depends on BR2_USE_MMU
  29. depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR