blob: 0144013be09058b0eb656d27a89e7a122b17206f [file] [log] [blame]
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.68])
dnl The libmbim version number
m4_define([mbim_major_version], [1])
m4_define([mbim_minor_version], [25])
m4_define([mbim_micro_version], [1])
m4_define([mbim_version],
[mbim_major_version.mbim_minor_version.mbim_micro_version])
dnl libtool versioning for libmbim-glib (-version-info c:r:a)
dnl If the interface is unchanged, but the implementation has changed or
dnl been fixed, then increment r.
dnl Otherwise, increment c and zero r.
dnl If the interface has grown (that is, the new library is compatible
dnl with old code), increment a.
dnl If the interface has changed in an incompatible way (that is,
dnl functions have changed or been removed), then zero a.
m4_define([mbim_glib_lt_current], [9])
m4_define([mbim_glib_lt_revision], [0])
m4_define([mbim_glib_lt_age], [5])
AC_INIT([libmbim], [mbim_version], [libmbim-devel@lists.freedesktop.org])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([1.11 no-define no-dist-gzip dist-xz tar-ustar -Wno-portability])
AM_MAINTAINER_MODE([enable])
dnl Support silent build rules. Disable
dnl by either passing --disable-silent-rules to configure or passing V=1
dnl to make
AM_SILENT_RULES([yes])
dnl Required programs
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_INSTALL
dnl Initialize libtool
LT_PREREQ([2.2])
LT_INIT
dnl-----------------------------------------------------------------------------
dnl Compiler warnings
dnl
dnl Make sure autoconf-archive is available
m4_pattern_forbid([^AX_(COMPILER_FLAGS|COMPILER_FLAGS_(CFLAGS|GIR|LDFLAGS))\b],
[Unexpanded AX_ macro found. Please install GNU autoconf-archive])
dnl Detect git or release builds
AX_IS_RELEASE([git-directory])
dnl Function type cast disabled: used throughout the code especially to
dnl cast GAsyncReadyCallbacks with the real object type instead of GObject
DISABLED_WARNINGS="${DISABLED_WARNINGS} -Wno-cast-function-type"
dnl All message protocol structs are packed, never complain about it
DISABLED_WARNINGS="${DISABLED_WARNINGS} -Wno-packed"
dnl Setup compiler checks
AX_COMPILER_FLAGS()
AX_COMPILER_FLAGS_CFLAGS(,,,[${DISABLED_WARNINGS}])
dnl Specify gnu89 mode
if test "$GCC" = "yes"; then
CFLAGS="$CFLAGS -std=gnu89"
fi
dnl Version stuff
MBIM_MAJOR_VERSION=mbim_major_version
MBIM_MINOR_VERSION=mbim_minor_version
MBIM_MICRO_VERSION=mbim_micro_version
MBIM_VERSION=mbim_version
AC_SUBST(MBIM_MAJOR_VERSION)
AC_SUBST(MBIM_MINOR_VERSION)
AC_SUBST(MBIM_MICRO_VERSION)
AC_SUBST(MBIM_VERSION)
dnl libtool version stuff
MBIM_GLIB_LT_CURRENT=mbim_glib_lt_current
MBIM_GLIB_LT_REVISION=mbim_glib_lt_revision
MBIM_GLIB_LT_AGE=mbim_glib_lt_age
AC_SUBST(MBIM_GLIB_LT_CURRENT)
AC_SUBST(MBIM_GLIB_LT_REVISION)
AC_SUBST(MBIM_GLIB_LT_AGE)
dnl Required dependency versions
GLIB_MIN_VERSION=2.48
GLIB_BUILD_SYMBOLS="-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_48 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_48 -DGLIB_DISABLE_DEPRECATION_WARNINGS"
dnl General dependencies for common
PKG_CHECK_MODULES(MBIM_COMMON,
glib-2.0 >= $GLIB_MIN_VERSION)
MBIM_COMMON_CFLAGS="$MBIM_COMMON_CFLAGS $GLIB_BUILD_SYMBOLS"
AC_SUBST(MBIM_COMMON_CFLAGS)
AC_SUBST(MBIM_COMMON_LIBS)
dnl General dependencies for libmbim-glib
PKG_CHECK_MODULES(LIBMBIM_GLIB,
glib-2.0 >= $GLIB_MIN_VERSION
gobject-2.0
gio-2.0
gio-unix-2.0)
LIBMBIM_GLIB_CFLAGS="$LIBMBIM_GLIB_CFLAGS $GLIB_BUILD_SYMBOLS"
AC_SUBST(LIBMBIM_GLIB_CFLAGS)
AC_SUBST(LIBMBIM_GLIB_LIBS)
dnl General dependencies for mbimcli
PKG_CHECK_MODULES(MBIMCLI,
glib-2.0 >= $GLIB_MIN_VERSION
gobject-2.0
gio-2.0)
MBIMCLI_CFLAGS="$MBIMCLI_CFLAGS $GLIB_BUILD_SYMBOLS"
AC_SUBST(MBIMCLI_CFLAGS)
AC_SUBST(MBIMCLI_LIBS)
dnl General dependencies for mbim-proxy
PKG_CHECK_MODULES(MBIMPROXY,
glib-2.0 >= $GLIB_MIN_VERSION
gobject-2.0
gio-2.0)
MBIMPROXY_CFLAGS="$MBIMPROXY_CFLAGS $GLIB_BUILD_SYMBOLS"
AC_SUBST(MBIMPROXY_CFLAGS)
AC_SUBST(MBIMPROXY_LIBS)
AM_PATH_PYTHON([], [], [PYTHON=python])
dnl Documentation
GTK_DOC_CHECK(1.0)
dnl GObject Introspection
GOBJECT_INTROSPECTION_CHECK([0.9.6])
# MBIM username
MBIM_USERNAME="root"
AC_ARG_ENABLE(mbim-username,
AS_HELP_STRING([--enable-mbim-username=<username>], [user allowed to access MBIM devices]))
if test -n "$enable_mbim_username" ; then
MBIM_USERNAME_ENABLED=yes
AC_DEFINE(MBIM_USERNAME_ENABLED, 1, [Define if we enable MBIM username])
MBIM_USERNAME="$enable_mbim_username"
AC_SUBST(MBIM_USERNAME)
AC_DEFINE_UNQUOTED(MBIM_USERNAME, "$MBIM_USERNAME", [Define the MBIM username])
else
MBIM_USERNAME_ENABLED=no
fi
AM_CONDITIONAL([MBIM_USERNAME_ENABLED], [test "x$MBIM_USERNAME_ENABLED" = "xyes"])
# udev base directory
AC_ARG_WITH(udev-base-dir, AS_HELP_STRING([--with-udev-base-dir=DIR], [where udev base directory is]))
if test -n "$with_udev_base_dir" ; then
UDEV_BASE_DIR="$with_udev_base_dir"
else
UDEV_BASE_DIR="/lib/udev"
fi
AC_SUBST(UDEV_BASE_DIR)
dnl Man page
AC_PATH_PROG(HELP2MAN, help2man, false)
AM_CONDITIONAL(BUILDOPT_MAN, test x$HELP2MAN != xfalse)
AC_CONFIG_FILES([Makefile
build-aux/Makefile
build-aux/templates/Makefile
build-aux/mbim-codegen/Makefile
data/Makefile
data/pkg-config/Makefile
data/pkg-config/mbim-glib.pc
src/Makefile
src/common/Makefile
src/common/test/Makefile
src/libmbim-glib/Makefile
src/libmbim-glib/mbim-version.h
src/libmbim-glib/generated/Makefile
src/libmbim-glib/test/Makefile
src/mbimcli/Makefile
src/mbim-proxy/Makefile
utils/Makefile
examples/Makefile
examples/simple-tester-python/Makefile
docs/Makefile
docs/reference/Makefile
docs/reference/libmbim-glib/Makefile
docs/reference/libmbim-glib/version.xml
docs/man/Makefile])
if test "x$MBIM_USERNAME_ENABLED" = "xyes"; then
AC_CONFIG_FILES([src/mbim-proxy/76-mbim-proxy-device-ownership.rules])
fi
AC_OUTPUT
echo "
libmbim $VERSION
==============================================
Build:
compiler: ${CC}
cflags: ${CFLAGS}
ldflags: ${LDFLAGS}
warn cflags: ${WARN_CFLAGS}
warn ldflags: ${WARN_LDFLAGS}
Maintainer mode: ${USE_MAINTAINER_MODE}
Documentation: ${enable_gtk_doc}
gobject introspection: ${found_introspection}
System paths:
prefix: ${prefix}
udev base directory: ${UDEV_BASE_DIR}
Features:
MBIM username: ${MBIM_USERNAME_ENABLED} (${MBIM_USERNAME})
"