nfctype2: Initial implementation
[platform/upstream/neard.git] / configure.ac
1 AC_PREREQ(2.60)
2 AC_INIT(neard, 0.0)
3
4 AM_INIT_AUTOMAKE([foreign subdir-objects color-tests])
5 AM_CONFIG_HEADER(config.h)
6
7 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
8
9 AM_MAINTAINER_MODE
10
11 AC_PREFIX_DEFAULT(/usr/local)
12
13 if (test "${libdir}" = '${exec_prefix}/lib'); then
14         libdir="${prefix}/lib"
15 fi
16
17 plugindir="${libdir}/near/plugins"
18
19 PKG_PROG_PKG_CONFIG
20
21 COMPILER_FLAGS
22
23 AC_LANG_C
24
25 AC_PROG_CC
26 AC_PROG_CC_PIE
27 AC_PROG_INSTALL
28
29 m4_define([_LT_AC_TAGCONFIG], [])
30 m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])
31
32 AC_DISABLE_STATIC
33 AC_PROG_LIBTOOL
34
35 AC_ARG_ENABLE(optimization, AC_HELP_STRING([--disable-optimization],
36                         [disable code optimization through compiler]), [
37         if (test "${enableval}" = "no"); then
38                 CFLAGS="$CFLAGS -O0"
39         fi
40 ])
41
42 AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
43                         [enable compiling with debugging information]), [
44         if (test "${enableval}" = "yes" &&
45                                 test "${ac_cv_prog_cc_g}" = "yes"); then
46                 CFLAGS="$CFLAGS -g"
47         fi
48 ])
49
50 AC_ARG_ENABLE(pie, AC_HELP_STRING([--enable-pie],
51                         [enable position independent executables flag]), [
52         if (test "${enableval}" = "yes" &&
53                                 test "${ac_cv_prog_cc_pie}" = "yes"); then
54                 CFLAGS="$CFLAGS -fPIE"
55                 LDFLAGS="$LDFLAGS -pie"
56         fi
57 ])
58
59 AC_CHECK_LIB(dl, dlopen, dummy=yes,
60                         AC_MSG_ERROR(dynamic linking loader is required))
61
62 PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, dummy=yes,
63                                 AC_MSG_ERROR(GLib >= 2.16 is required))
64 AC_SUBST(GLIB_CFLAGS)
65 AC_SUBST(GLIB_LIBS)
66
67 PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, dummy=yes,
68                                 AC_MSG_ERROR(D-Bus >= 1.0 is required))
69 AC_CHECK_LIB(dbus-1, dbus_watch_get_unix_fd, dummy=yes,
70         AC_DEFINE(NEED_DBUS_WATCH_GET_UNIX_FD, 1,
71                 [Define to 1 if you need the dbus_watch_get_unix_fd() function.]
72 ))
73 AC_SUBST(DBUS_CFLAGS)
74 AC_SUBST(DBUS_LIBS)
75
76 PKG_CHECK_MODULES(NETLINK, libnl-2.0, dummy=yes,
77                                 AC_MSG_ERROR(Netlink library is required))
78 AC_SUBST(NETLINK_CFLAGS)
79 AC_SUBST(NETLINK_LIBS)
80
81 AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-test],
82                 [enable test/example scripts]), [enable_test=${enableval}])
83 AM_CONDITIONAL(TEST, test "${enable_test}" = "yes")
84
85 AC_ARG_ENABLE(nfctype2,
86         AC_HELP_STRING([--enable-nfctype2], [enable NFC forum type 2 tags support]),
87                         [enable_nfctype2=${enableval}], [enable_nfctype2="no"])
88 AM_CONDITIONAL(NFCTYPE2, test "${enable_nfctype2}" != "no")
89 AM_CONDITIONAL(NFCTYPE2_BUILTIN, test "${enable_nfctype2}" = "builtin")
90
91 AC_OUTPUT(Makefile include/version.h)