configure.ac 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # configure.ac -- Autoconf script for gps loc-core
  2. #
  3. # Process this file with autoconf to produce a configure script
  4. # Requires autoconf tool later than 2.61
  5. AC_PREREQ(2.61)
  6. # Initialize the gps loc-hal package version 1.0.0
  7. AC_INIT([loc-core],1.0.0)
  8. # Does not strictly follow GNU Coding standards
  9. AM_INIT_AUTOMAKE([foreign subdir-objects])
  10. # Disables auto rebuilding of configure, Makefile.ins
  11. AM_MAINTAINER_MODE
  12. # Verifies the --srcdir is correct by checking for the path
  13. AC_CONFIG_SRCDIR([loc-core.pc.in])
  14. # defines some macros variable to be included by source
  15. AC_CONFIG_HEADERS([config.h])
  16. AC_CONFIG_MACRO_DIR([m4])
  17. # Checks for programs.
  18. AC_PROG_LIBTOOL
  19. AC_PROG_CXX
  20. AC_PROG_CC
  21. AM_PROG_CC_C_O
  22. AC_PROG_AWK
  23. AC_PROG_CPP
  24. AC_PROG_INSTALL
  25. AC_PROG_LN_S
  26. AC_PROG_MAKE_SET
  27. PKG_PROG_PKG_CONFIG
  28. # Checks for libraries.
  29. PKG_CHECK_MODULES([GPSUTILS], [gps-utils])
  30. AC_SUBST([GPSUTILS_CFLAGS])
  31. AC_SUBST([GPSUTILS_LIBS])
  32. AC_ARG_WITH([core_includes],
  33. AC_HELP_STRING([--with-core-includes=@<:@dir@:>@],
  34. [Specify the location of the core headers]),
  35. [core_incdir=$withval],
  36. with_core_includes=no)
  37. if test "x$with_core_includes" != "xno"; then
  38. CPPFLAGS="${CPPFLAGS} -I${core_incdir}"
  39. fi
  40. AC_ARG_WITH([locpla_includes],
  41. AC_HELP_STRING([--with-locpla-includes=@<:@dir@:>@],
  42. [specify the path to locpla-includes in loc-pla_git.bb]),
  43. [locpla_incdir=$withval],
  44. with_locpla_includes=no)
  45. if test "x$with_locpla_includes" != "xno"; then
  46. AC_SUBST(LOCPLA_CFLAGS, "-I${locpla_incdir}")
  47. fi
  48. AC_SUBST([CPPFLAGS])
  49. AC_ARG_WITH([glib],
  50. AC_HELP_STRING([--with-glib],
  51. [enable glib, building HLOS systems which use glib]))
  52. if (test "x${with_glib}" = "xyes"); then
  53. AC_DEFINE(ENABLE_USEGLIB, 1, [Define if HLOS systems uses glib])
  54. PKG_CHECK_MODULES(GTHREAD, gthread-2.0 >= 2.16, dummy=yes,
  55. AC_MSG_ERROR(GThread >= 2.16 is required))
  56. PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, dummy=yes,
  57. AC_MSG_ERROR(GLib >= 2.16 is required))
  58. GLIB_CFLAGS="$GLIB_CFLAGS $GTHREAD_CFLAGS"
  59. GLIB_LIBS="$GLIB_LIBS $GTHREAD_LIBS"
  60. AC_SUBST(GLIB_CFLAGS)
  61. AC_SUBST(GLIB_LIBS)
  62. fi
  63. AM_CONDITIONAL(USE_GLIB, test "x${with_glib}" = "xyes")
  64. AC_ARG_WITH([auto_feature],
  65. AC_HELP_STRING([--with-auto_feature=@<:@dir@:>@],
  66. [Using Automotive feature]),
  67. [],
  68. with_auto_feature=no)
  69. if test "x$with_auto_feature" != "xno"; then
  70. CPPFLAGS="${CPPFLAGS} -DFEATURE_AUTOMOTIVE"
  71. fi
  72. AM_CONDITIONAL(USE_FEATURE_AUTOMOTIVE, test "x${with_auto_feature}" = "xyes")
  73. # External AP
  74. AC_ARG_WITH([external_ap],
  75. AC_HELP_STRING([--with-external_ap=@<:@dir@:>@],
  76. [Using External Application Processor]),
  77. [],
  78. with_external_ap=no)
  79. if test "x$with_external_ap" != "xno"; then
  80. CPPFLAGS="${CPPFLAGS} -DFEATURE_EXTERNAL_AP"
  81. fi
  82. AM_CONDITIONAL(USE_EXTERNAL_AP, test "x${with_external_ap}" = "xyes")
  83. AC_CONFIG_FILES([ \
  84. Makefile \
  85. loc-core.pc \
  86. ])
  87. AC_OUTPUT