Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config ADK_PACKAGE_GPSD
  2. prompt "gpsd.............................. An interface daemon for GPS receivers"
  3. tristate
  4. default n
  5. select ADK_PACKAGE_LIBPTHREAD
  6. help
  7. gpsd is a monitor daemon that watches a TCP/IP port (2947 by default),
  8. waiting for applications to request information from GPSes or
  9. differential-GPS radios attached to the host machine. Each GPS or
  10. radio is expected to be direct-connected to the host via a USB or
  11. RS232C serial port. The port may be specified to gpsd at startup, or
  12. it may be set via a command shipped down a local control socket (e.g.
  13. by a USB hotplug script). Given a GPS device by either means, gpsd
  14. discovers the correct port speed and protocol for it.
  15. http://gpsd.berlios.de/
  16. config ADK_PACKAGE_GPSD_CLIENTS
  17. prompt "gpsd-clients.................... cgps and gpxlogger"
  18. tristate
  19. default y
  20. depends on ADK_PACKAGE_GPSD
  21. help
  22. This enables the command-line GPS client "cgps" and
  23. the "gpxlogger" tool for outputting standard GPX files.
  24. choice
  25. prompt "C++ library to use"
  26. depends on ADK_PACKAGE_GPSD
  27. default ADK_COMPILE_GPSD_WITH_STDCXX if ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC
  28. default ADK_COMPILE_GPSD_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
  29. config ADK_COMPILE_GPSD_WITH_STDCXX
  30. bool "Standard C++ library"
  31. select ADK_PACKAGE_LIBSTDCXX
  32. help
  33. config ADK_COMPILE_GPSD_WITH_UCLIBCXX
  34. bool "Embedded uClibc++ library"
  35. select ADK_PACKAGE_UCLIBCXX
  36. help
  37. endchoice