Config.in 780 B

123456789101112131415161718192021222324
  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. help
  10. PostgreSQL is a powerful, open source object-relational
  11. database system.
  12. Enable the readline package to gain readline support in
  13. pgsql (the command line interpreter), which offers
  14. command history and edit functions.
  15. Enable the zlib package to gain builtin compression for
  16. archives with pg_dump and pg_restore.
  17. http://www.postgresql.org
  18. comment "postgresql needs a toolchain w/ dynamic library, wchar"
  19. depends on BR2_USE_MMU
  20. depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR