plugins: Use stdbool instead gboolean or near_bool_t
[platform/upstream/neard.git] / configure.ac
index 90d0d89..411c6c0 100644 (file)
@@ -1,8 +1,8 @@
 AC_PREREQ(2.60)
-AC_INIT(neard, 0.1)
+AC_INIT(neard, 0.12)
 
 AM_INIT_AUTOMAKE([foreign subdir-objects color-tests])
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
 
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
@@ -59,66 +59,79 @@ AC_ARG_ENABLE(pie, AC_HELP_STRING([--enable-pie],
 AC_CHECK_LIB(dl, dlopen, dummy=yes,
                        AC_MSG_ERROR(dynamic linking loader is required))
 
-PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.16, dummy=yes,
-                               AC_MSG_ERROR(GLib >= 2.16 is required))
+GLIB_DEPS="glib-2.0 >= 2.28"
+PKG_CHECK_MODULES(GLIB, [${GLIB_DEPS}], dummy=yes,
+                               AC_MSG_ERROR(GLib >= 2.28 is required))
 AC_SUBST(GLIB_CFLAGS)
 AC_SUBST(GLIB_LIBS)
+AC_SUBST(GLIB_DEPS)
 
-PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, dummy=yes,
-                               AC_MSG_ERROR(D-Bus >= 1.0 is required))
-AC_CHECK_LIB(dbus-1, dbus_watch_get_unix_fd, dummy=yes,
-       AC_DEFINE(NEED_DBUS_WATCH_GET_UNIX_FD, 1,
-               [Define to 1 if you need the dbus_watch_get_unix_fd() function.]
-))
+DBUS_DEPS="dbus-1 >= 1.2"
+PKG_CHECK_MODULES(DBUS, [${DBUS_DEPS}], dummy=yes,
+                               AC_MSG_ERROR(D-Bus >= 1.2 is required))
 AC_SUBST(DBUS_CFLAGS)
 AC_SUBST(DBUS_LIBS)
+AC_SUBST(DBUS_DEPS)
 
-PKG_CHECK_MODULES(LIBNL2, libnl-2.0, [
-       NETLINK_CFLAGS=${IBNL2_CFLAGS}
-       NETLINK_LIBS=${LIBNL2_LIBS}
+LIBNL3_DEPS="libnl-3.0 libnl-genl-3.0"
+PKG_CHECK_MODULES(LIBNL3, [${LIBNL3_DEPS}], [
+       NETLINK_CFLAGS=${LIBNL3_CFLAGS}
+       NETLINK_LIBS=${LIBNL3_LIBS}
+       NETLINK_DEPS=${LIBNL3_DEPS}
 ], [
-       PKG_CHECK_MODULES(LIBNL1, libnl-1, dummy=yes,
-                               AC_MSG_ERROR(Netlink library is required))
-       AC_DEFINE(NEED_LIBNL_COMPAT, 1,
+       LIBNL2_DEPS="libnl-2.0"
+       PKG_CHECK_MODULES(LIBNL2, [${LIBNL2_DEPS}], [
+               NETLINK_CFLAGS=${LIBNL2_CFLAGS}
+               NETLINK_LIBS=${LIBNL2_LIBS}
+               NETLINK_DEPS=${LIBNL2_DEPS}
+       ], [
+               LIBNL1_DEPS="libnl-1"
+               PKG_CHECK_MODULES(LIBNL1, [${LIBNL1_DEPS}], dummy=yes,
+                       AC_MSG_ERROR(Netlink library is required))
+               AC_DEFINE(NEED_LIBNL_COMPAT, 1,
                        [Define to 1 if you need libnl-1 compat functions.])
-       NETLINK_CFLAGS=${LIBNL1_CFLAGS}
-       NETLINK_LIBS=${LIBNL1_LIBS}
+               NETLINK_CFLAGS=${LIBNL1_CFLAGS}
+               NETLINK_LIBS=${LIBNL1_LIBS}
+               NETLINK_DEPS=${LIBNL1_DEPS}
+       ])
 ])
 AC_SUBST(NETLINK_CFLAGS)
 AC_SUBST(NETLINK_LIBS)
+AC_SUBST(NETLINK_DEPS)
 
 AC_ARG_ENABLE(test, AC_HELP_STRING([--enable-test],
-               [enable test/example scripts]), [enable_test=${enableval}])
+                                       [enable test/example scripts]),
+                                       [enable_test=${enableval}])
 AM_CONDITIONAL(TEST, test "${enable_test}" = "yes")
 
-AC_ARG_ENABLE(nfctype1,
-       AC_HELP_STRING([--enable-nfctype1], [enable NFC forum type 1 tags support]),
-                       [enable_nfctype1=${enableval}], [enable_nfctype1="no"])
+AC_ARG_ENABLE(tools, AC_HELP_STRING([--enable-tools],
+                                       [enable testing tools]),
+                                       [enable_tools=${enableval}])
+AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")
+
+AC_ARG_ENABLE(nfctype1, AC_HELP_STRING([--disable-nfctype1],
+                               [disable NFC forum type 1 tags support]),
+                               [enable_nfctype1=${enableval}])
 AM_CONDITIONAL(NFCTYPE1, test "${enable_nfctype1}" != "no")
-AM_CONDITIONAL(NFCTYPE1_BUILTIN, test "${enable_nfctype1}" = "builtin")
 
-AC_ARG_ENABLE(nfctype2,
-       AC_HELP_STRING([--enable-nfctype2], [enable NFC forum type 2 tags support]),
-                       [enable_nfctype2=${enableval}], [enable_nfctype2="no"])
+AC_ARG_ENABLE(nfctype2, AC_HELP_STRING([--disable-nfctype2],
+                               [disable NFC forum type 2 tags support]),
+                               [enable_nfctype2=${enableval}])
 AM_CONDITIONAL(NFCTYPE2, test "${enable_nfctype2}" != "no")
-AM_CONDITIONAL(NFCTYPE2_BUILTIN, test "${enable_nfctype2}" = "builtin")
 
-AC_ARG_ENABLE(nfctype3,
-       AC_HELP_STRING([--enable-nfctype3], [enable NFC forum type 3 tags support]),
-                       [enable_nfctype3=${enableval}], [enable_nfctype3="no"])
+AC_ARG_ENABLE(nfctype3, AC_HELP_STRING([--disable-nfctype3],
+                               [disable NFC forum type 3 tags support]),
+                               [enable_nfctype3=${enableval}])
 AM_CONDITIONAL(NFCTYPE3, test "${enable_nfctype3}" != "no")
-AM_CONDITIONAL(NFCTYPE3_BUILTIN, test "${enable_nfctype3}" = "builtin")
 
-AC_ARG_ENABLE(nfctype4,
-       AC_HELP_STRING([--enable-nfctype4], [enable NFC forum type 4 tags support]),
-                       [enable_nfctype4=${enableval}], [enable_nfctype4="no"])
+AC_ARG_ENABLE(nfctype4, AC_HELP_STRING([--disable-nfctype4],
+                               [disable NFC forum type 4 tags support]),
+                               [enable_nfctype4=${enableval}])
 AM_CONDITIONAL(NFCTYPE4, test "${enable_nfctype4}" != "no")
-AM_CONDITIONAL(NFCTYPE4_BUILTIN, test "${enable_nfctype4}" = "builtin")
 
-AC_ARG_ENABLE(p2p,
-       AC_HELP_STRING([--enable-p2p], [enable NFC peer to peer support]),
-                       [enable_p2p=${enableval}], [enable_p2p="no"])
+AC_ARG_ENABLE(p2p, AC_HELP_STRING([--disable-p2p],
+                               [disable NFC peer to peer support]),
+                               [enable_p2p=${enableval}])
 AM_CONDITIONAL(P2P, test "${enable_p2p}" != "no")
-AM_CONDITIONAL(P2P_BUILTIN, test "${enable_p2p}" = "builtin")
 
 AC_OUTPUT(Makefile include/version.h neard.pc)