Config.in 1.4 KB

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