X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=configure.ac;h=f63fea8b276a7516873070726c04567a4777ecc9;hb=fa54ada1a44c97165690e548719231de23756e74;hp=ac66406d98725efe845aef0fd3133d5ff4692ab3;hpb=17912e9adca8d1fd06abeb7ffd9d722c6bfa376d;p=framework%2Fconnectivity%2Fconnman.git diff --git a/configure.ac b/configure.ac index ac66406..f63fea8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.60) -AC_INIT(connman, 0.71) +AC_INIT(connman, 0.78) -AM_INIT_AUTOMAKE([foreign subdir-objects]) +AM_INIT_AUTOMAKE([foreign subdir-objects color-tests]) AM_CONFIG_HEADER(config.h) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) @@ -104,6 +104,9 @@ AC_ARG_ENABLE(openconnect, if (test "${enable_openconnect}" != "no"); then if (test -z "${path_openconnect}"); then AC_PATH_PROG(OPENCONNECT, [openconnect], [], $PATH:/sbin:/usr/sbin) + if (test -z "${OPENCONNECT}"); then + AC_MSG_ERROR(openconnect binary not found) + fi else OPENCONNECT="${path_openconnect}" AC_SUBST(OPENCONNECT) @@ -112,12 +115,6 @@ fi AM_CONDITIONAL(OPENCONNECT, test "${enable_openconnect}" != "no") AM_CONDITIONAL(OPENCONNECT_BUILTIN, test "${enable_openconnect}" = "builtin") -AC_ARG_ENABLE(portal, - AC_HELP_STRING([--enable-portal], [enable portal detection support]), - [enable_portal=${enableval}], [enable_portal="no"]) -AM_CONDITIONAL(PORTAL, test "${enable_portal}" != "no") -AM_CONDITIONAL(PORTAL_BUILTIN, test "${enable_portal}" = "builtin") - AC_ARG_WITH(openvpn, AC_HELP_STRING([--with-openvpn=PROGRAM], [specify location of openvpn binary]), [path_openvpn=${withval}]) @@ -127,6 +124,9 @@ AC_ARG_ENABLE(openvpn, if (test "${enable_openvpn}" != "no"); then if (test -z "${path_openvpn}"); then AC_PATH_PROG(OPENVPN, [openvpn], [], $PATH:/sbin:/usr/sbin) + if (test -z "${OPENVPN}"); then + AC_MSG_ERROR(openvpn binary not found) + fi else OPENVPN="${path_openvpn}" AC_SUBST(OPENVPN) @@ -144,6 +144,9 @@ AC_ARG_ENABLE(vpnc, if (test "${enable_vpnc}" != "no"); then if (test -z "${path_vpnc}"); then AC_PATH_PROG(VPNC, [vpnc], [], $PATH:/sbin:/usr/sbin) + if (test -z "${VPNC}"); then + AC_MSG_ERROR(vpnc binary not found) + fi else VPNC="${path_vpnc}" AC_SUBST(VPNC) @@ -152,6 +155,50 @@ fi AM_CONDITIONAL(VPNC, test "${enable_vpnc}" != "no") AM_CONDITIONAL(VPNC_BUILTIN, test "${enable_vpnc}" = "builtin") +AC_ARG_ENABLE(l2tp, + AC_HELP_STRING([--enable-l2tp], [enable l2tp support]), + [enable_l2tp=${enableval}], [enable_l2tp="no"]) +if (test "${enable_l2tp}" != "no"); then + if (test -z "${path_pppd}"); then + AC_PATH_PROG(PPPD, [pppd], [/usr/sbin/pppd], $PATH:/sbin:/usr/sbin) + else + PPPD="${path_pppd}" + AC_SUBST(PPPD) + fi + AC_CHECK_HEADERS(pppd/pppd.h, dummy=yes, + AC_MSG_ERROR(ppp header files are required)) + if (test -z "${path_l2tp}"); then + AC_PATH_PROG(L2TP, [xl2tpd], [/usr/sbin/xl2tpd], $PATH:/sbin:/usr/sbin) + else + L2TP="${path_l2tp}" + AC_SUBST(L2TP) + fi +fi +AM_CONDITIONAL(L2TP, test "${enable_l2tp}" != "no") +AM_CONDITIONAL(L2TP_BUILTIN, test "${enable_l2tp}" = "builtin") + +AC_ARG_ENABLE(pptp, + AC_HELP_STRING([--enable-pptp], [enable pptp support]), + [enable_pptp=${enableval}], [enable_pptp="no"]) +if (test "${enable_pptp}" != "no"); then + if (test -z "${path_pppd}"); then + AC_PATH_PROG(PPPD, [pppd], [/usr/sbin/pppd], $PATH:/sbin:/usr/sbin) + else + PPPD="${path_pppd}" + AC_SUBST(PPPD) + fi + AC_CHECK_HEADERS(pppd/pppd.h, dummy=yes, + AC_MSG_ERROR(ppp header files are required)) + if (test -z "${path_pptp}"); then + AC_PATH_PROG(PPTP, [pptp], [/usr/sbin/pptp], $PATH:/sbin:/usr/sbin) + else + PPTP="${path_pptp}" + AC_SUBST(PPTP) + fi +fi +AM_CONDITIONAL(PPTP, test "${enable_pptp}" != "no") +AM_CONDITIONAL(PPTP_BUILTIN, test "${enable_pptp}" = "builtin") + AC_ARG_ENABLE(loopback, AC_HELP_STRING([--enable-loopback], [enable loopback support]), [enable_loopback=${enableval}], [enable_loopback="no"]) @@ -191,6 +238,9 @@ AC_CHECK_LIB(resolv, ns_initparse, dummy=yes, [ AC_MSG_ERROR(resolver library support is required)) ]) +AC_CHECK_FUNC(signalfd, dummy=yes, + AC_MSG_ERROR(signalfd support is required)) + AC_CHECK_LIB(dl, dlopen, dummy=yes, AC_MSG_ERROR(dynamic linking loader is required)) @@ -312,9 +362,19 @@ fi PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, dummy=yes, AC_MSG_ERROR(D-Bus >= 1.0 is required)) +saved_CFLAGS="$CFLAGS" +saved_LIBS="$LIBS" +CFLAGS="$CFLAGS $DBUS_CFLAGS" +LIBS="$LIBS $DBUS_LIBS" 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.])) +AC_CHECK_LIB(dbus-1, dbus_connection_can_send_type, dummy=yes, + AC_DEFINE(NEED_DBUS_CONNECTION_CAN_SEND_TYPE, 1, + [Define to 1 if you need the dbus_connection_can_send_type() function.] +)) +CFLAGS="$saved_CFLAGS" +LIBS="$saved_LIBS" AC_SUBST(DBUS_CFLAGS) AC_SUBST(DBUS_LIBS) @@ -373,15 +433,13 @@ AM_CONDITIONAL(CLIENT, test "${enable_client}" = "yes") AC_ARG_ENABLE(tools, AC_HELP_STRING([--enable-tools], [enable testing tools]), [enable_tools=${enableval}]) if (test "${enable_tools}" = "yes"); then - PKG_CHECK_MODULES(NETLINK, libnl-1, dummy=yes, - AC_MSG_ERROR(Netlink library is required)) - AC_SUBST(NETLINK_CFLAGS) - AC_SUBST(NETLINK_LIBS) - PKG_CHECK_MODULES(GNUTLS, gnutls, dummy=yes, AC_MSG_ERROR(GnuTLS library is required)) AC_SUBST(GNUTLS_CFLAGS) AC_SUBST(GNUTLS_LIBS) + + AC_CHECK_HEADERS(linux/if_alg.h, dummy=yes, + AC_MSG_ERROR(User-space algorithm header files are required)) fi AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")