4 dnl releases only do -Wall, cvs and prerelease does -Werror too
5 dnl use a three digit version number for releases, and four for cvs/prerelease
6 AC_INIT(libnice, 0.1.1)
9 AC_CONFIG_SRCDIR([agent/agent.c])
10 AC_CONFIG_HEADER([config.h])
11 AM_INIT_AUTOMAKE([-Wall])
24 docs/reference/Makefile
25 docs/reference/libnice/Makefile
29 # Set the libtool C/A/R version info
30 # If the source code was changed, but there were no interface changes:
32 # If there was a compatible interface change:
33 # Increment CURRENT and AGE. Set REVISION to 0
34 # If there was an incompatible interface change:
35 # Increment CURRENT. Set AGE and REVISION to 0
39 LIBNICE_LIBVERSION=${LIBNICE_CURRENT}:${LIBNICE_REVISION}:${LIBNICE_AGE}
40 LIBNICE_LT_LDFLAGS="-version-info ${LIBNICE_LIBVERSION}"
41 AC_SUBST(LIBNICE_LT_LDFLAGS)
44 dnl use pretty build output with automake >= 1.11
45 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],
46 [AM_DEFAULT_VERBOSITY=1
47 AC_SUBST(AM_DEFAULT_VERBOSITY)])
50 # Checks for programs.
53 AC_USE_SYSTEM_EXTENSIONS
57 # Checks for compiler features
63 AC_DEFINE([_FORTIFY_SOURCE], [2], [Define to `2' to get GNU/libc warnings.])
64 AC_DEFINE([NICEAPI_EXPORT], [ ], [Public library function implementation])
65 AC_CHECK_HEADERS([arpa/inet.h net/in.h ifaddrs.h], \
66 [AC_DEFINE(HAVE_GETIFADDRS, [1], \
67 [Whether getifaddrs() is available on the system])])
69 LIBNICE_CFLAGS="-Wall"
70 dnl if asked for, add -Werror if supported
71 if test "x$LIBNICE_RELEASE" != "xyes"; then
72 LIBNICE_CFLAGS="$LIBNICE_CFLAGS -Werror"
75 AC_SUBST(LIBNICE_CFLAGS)
76 AC_MSG_NOTICE([set LIBNICE_CFLAGS to $LIBNICE_CFLAGS])
78 # Checks for libraries.
79 AC_CHECK_LIB(rt, clock_gettime, [LIBRT="-lrt"], [LIBRT=""])
80 AC_CHECK_FUNCS([poll])
83 PKG_CHECK_MODULES(GLIB, [dnl
85 gobject-2.0 >= 2.10 dnl
86 gthread-2.0 >= 2.10 dnl
89 AC_ARG_WITH(gstreamer,
90 AC_HELP_STRING([--with-gstreamer], [use GStreamer]),
91 [with_gstreamer=${withval}],
92 [with_gstreamer=auto])
94 AS_IF([test "$with_gstreamer" != no], [
96 PKG_CHECK_MODULES(GST, [
97 gstreamer-0.10 >= 0.10.0
98 gstreamer-base-0.10 >= 0.10.0
103 gstplugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
106 AS_IF([test "$with_gstreamer" = yes], [
107 AC_MSG_ERROR([GStreamer support was requested but GStreamer libraries are not available])
114 AC_SUBST(gstplugindir)
116 AM_CONDITIONAL(WITH_GSTREAMER, test "$with_gstreamer" = yes)
118 GUPNP_IGD_REQUIRED=0.1.2
120 AC_ARG_ENABLE([gupnp],
121 AC_HELP_STRING([--disable-gupnp], [Disable GUPnP IGD support]),
122 [case "${enableval}" in
123 yes) WANT_GUPNP=yes ;;
125 *) AC_MSG_ERROR(bad value ${enableval} for --enable-gupnp) ;;
130 if test "x$WANT_GUPNP" != "xno"; then
131 PKG_CHECK_MODULES(GUPNP, gupnp-igd-1.0 >= $GUPNP_IGD_REQUIRED,
135 if test "x$WANT_GUPNP" = "xyes" && test "x$HAVE_GUPNP" = "xno"; then
136 AC_ERROR([Requested GUPnP IGD, but it is not available])
139 if test "x$HAVE_GUPNP" = "xyes"; then
140 AC_DEFINE(HAVE_GUPNP,,[Have the GUPnP IGD library])
146 AC_ARG_ENABLE([coverage],
147 [AS_HELP_STRING([--enable-coverage],
148 [build for test coverage (default disabled)])],,
149 [enable_coverage="no"])
150 AS_IF([test "${enable_coverage}" != "no"], [
151 CFLAGS="${CFLAGS} -g -O0 -fprofile-arcs -ftest-coverage"
155 AC_SUBST(CCACHE_DISABLE)
159 LDFLAGS="$LDFLAGS -lsocket -lnls"
167 AC_CONFIG_MACRO_DIR(m4)