Config.in 959 B

123456789101112131415161718192021222324252627
  1. comment "avro-c needs a toolchain w/ dynamic library"
  2. depends on BR2_STATIC_LIBS
  3. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  4. config BR2_PACKAGE_AVRO_C
  5. bool "avro-c"
  6. depends on !BR2_STATIC_LIBS # Avro unconditionally compiles shared libs
  7. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  8. select BR2_PACKAGE_JANSSON
  9. help
  10. Select this option to install the Avro C language bindings,
  11. and the command line tools avroappend, avrocat, avromod and
  12. avropipe.
  13. Apache Avro is a data serialization system.
  14. Avro provides:
  15. - Rich data structures.
  16. - A compact, fast, binary data format.
  17. - A container file, to store persistent data.
  18. - Remote procedure call (RPC).
  19. - Simple integration with dynamic languages.
  20. - Code generation is not required to read or write data
  21. files nor to use or implement RPC protocols.
  22. - Code generation as an optional optimization,
  23. only worth implementing for statically typed languages.
  24. http://avro.apache.org/