Config.in 729 B

1234567891011121314151617181920212223
  1. config BR2_PACKAGE_POSTGRESQL
  2. bool "postgresql"
  3. depends on BR2_USE_MMU # fork()
  4. # fails to build in a pure static linking scenario, and
  5. # postgresql is unlikely to be used in a pure statically
  6. # linked environment.
  7. depends on !BR2_STATIC_LIBS
  8. help
  9. PostgreSQL is a powerful, open source object-relational
  10. database system.
  11. Enable the readline package to gain readline support in
  12. pgsql (the command line interpreter), which offers
  13. command history and edit functions.
  14. Enable the zlib package to gain builtin compression for
  15. archives with pg_dump and pg_restore.
  16. http://www.postgresql.org
  17. comment "postgresql needs a toolchain w/ dynamic library"
  18. depends on BR2_USE_MMU
  19. depends on BR2_STATIC_LIBS