2010-11-06 08:55:27 +08:00
AC_PREREQ([2.64])
2012-04-11 23:59:05 +08:00
2016-01-20 06:54:32 +08:00
m4_define([wayland_major_version], [1])
2016-06-01 08:11:20 +08:00
m4_define([wayland_minor_version], [11])
2016-08-31 02:40:23 +08:00
m4_define([wayland_micro_version], [92])
2012-04-11 23:59:05 +08:00
m4_define([wayland_version],
[wayland_major_version.wayland_minor_version.wayland_micro_version])
2010-11-06 08:55:27 +08:00
AC_INIT([wayland],
2012-04-11 23:59:05 +08:00
[wayland_version],
2013-03-18 01:53:29 +08:00
[https://bugs.freedesktop.org/enter_bug.cgi?product=Wayland&component=wayland&version=wayland_version],
2010-11-06 08:55:27 +08:00
[wayland],
[http://wayland.freedesktop.org/])
2012-04-11 23:59:05 +08:00
AC_SUBST([WAYLAND_VERSION_MAJOR], [wayland_major_version])
AC_SUBST([WAYLAND_VERSION_MINOR], [wayland_minor_version])
AC_SUBST([WAYLAND_VERSION_MICRO], [wayland_micro_version])
AC_SUBST([WAYLAND_VERSION], [wayland_version])
2010-10-25 23:40:03 +08:00
AC_CONFIG_HEADERS([config.h])
2010-11-06 08:55:27 +08:00
AC_CONFIG_MACRO_DIR([m4])
2014-03-07 15:15:02 +08:00
AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz subdir-objects])
2010-11-06 08:55:27 +08:00
2010-10-13 05:24:20 +08:00
AM_SILENT_RULES([yes])
2008-12-05 11:48:50 +08:00
2010-11-06 08:55:27 +08:00
# Check for programs
AC_PROG_CC
2014-12-15 18:33:53 +08:00
AC_PROG_CXX
2015-01-29 09:24:04 +08:00
AC_PROG_GREP
2015-11-10 07:53:08 +08:00
AM_PROG_AS
2014-12-15 18:33:53 +08:00
# check if we have C++ compiler. This is hacky workaround,
# for a reason why it is this way see
# http://lists.gnu.org/archive/html/bug-autoconf/2010-05/msg00001.html
have_cpp_compiler=yes
if ! which "$CXX" &>/dev/null; then
have_cpp_compiler=no
fi
AM_CONDITIONAL(ENABLE_CPP_TEST, test "x$have_cpp_compiler" = "xyes")
2010-11-06 08:55:27 +08:00
# Initialize libtool
LT_PREREQ([2.2])
LT_INIT
2008-12-05 11:48:50 +08:00
PKG_PROG_PKG_CONFIG()
2016-01-16 03:33:52 +08:00
AC_ARG_ENABLE([fatal-warnings],
AC_HELP_STRING([--enable-fatal-warnings],
[Build with -Werror]),
[enable_fatal_warnings=$enableval],
[enable_fatal_warnings=no])
AS_IF([test x"$enable_fatal_warnings" != "xno"], [
WERROR_CFLAGS="-Werror"
])
2011-01-28 21:47:21 +08:00
if test "x$GCC" = "xyes"; then
2016-01-16 03:33:52 +08:00
GCC_CFLAGS="$WERROR_CFLAGS -Wall -Wextra -Wno-unused-parameter -g -Wstrict-prototypes -Wmissing-prototypes -fvisibility=hidden"
2008-12-05 11:48:50 +08:00
fi
AC_SUBST(GCC_CFLAGS)
2013-11-29 23:47:08 +08:00
AC_CHECK_FUNCS([accept4 mkostemp posix_fallocate])
2012-03-22 20:16:10 +08:00
2015-06-18 04:13:50 +08:00
AC_ARG_ENABLE([libraries],
[AC_HELP_STRING([--disable-libraries],
[Disable compilation of wayland libraries])],
[],
[enable_libraries=yes])
2013-06-04 20:27:49 +08:00
2015-07-02 05:51:01 +08:00
AC_ARG_WITH([host-scanner],
[AC_HELP_STRING([--with-host-scanner],
[Use installed wayland-scanner from host PATH during build])],
2011-05-06 14:13:36 +08:00
[],
2015-07-02 05:51:01 +08:00
[with_host_scanner=no])
2011-05-06 14:13:36 +08:00
2012-03-18 01:09:39 +08:00
AC_ARG_ENABLE([documentation],
[AC_HELP_STRING([--disable-documentation],
[Disable building the documentation])],
[],
[enable_documentation=yes])
2015-11-10 07:53:08 +08:00
AC_ARG_ENABLE([dtd-validation],
[AC_HELP_STRING([--disable-dtd-validation],
[Disable DTD validation of the protocol])],
[],
2016-02-29 20:59:51 +08:00
[enable_dtd_validation=yes])
2015-11-10 07:53:08 +08:00
2015-07-02 05:51:01 +08:00
AM_CONDITIONAL(USE_HOST_SCANNER, test "x$with_host_scanner" = xyes)
2011-05-06 14:13:36 +08:00
2015-06-18 04:13:50 +08:00
AM_CONDITIONAL(ENABLE_LIBRARIES, test "x$enable_libraries" = xyes)
2012-06-08 16:58:02 +08:00
AC_ARG_WITH(icondir, [ --with-icondir=<dir> Look for cursor icons here],
[ ICONDIR=$withval],
[ ICONDIR=${datadir}/icons])
AC_SUBST([ICONDIR])
2015-06-18 04:13:50 +08:00
if test "x$enable_libraries" = "xyes"; then
2015-06-18 04:13:52 +08:00
PKG_CHECK_MODULES(FFI, [libffi])
2015-06-18 04:13:50 +08:00
AC_CHECK_DECL(SFD_CLOEXEC,[],
[AC_MSG_ERROR("SFD_CLOEXEC is needed to compile wayland libraries")],
[[#include <sys/signalfd.h>]])
AC_CHECK_DECL(TFD_CLOEXEC,[],
[AC_MSG_ERROR("TFD_CLOEXEC is needed to compile wayland libraries")],
[[#include <sys/timerfd.h>]])
AC_CHECK_DECL(CLOCK_MONOTONIC,[],
[AC_MSG_ERROR("CLOCK_MONOTONIC is needed to compile wayland libraries")],
[[#include <time.h>]])
AC_CHECK_HEADERS([execinfo.h])
fi
2015-07-02 05:51:01 +08:00
PKG_CHECK_MODULES(EXPAT, [expat], [],
[AC_CHECK_HEADERS(expat.h, [],
[AC_MSG_ERROR([Can't find expat.h. Please install expat.])])
SAVE_LIBS="$LIBS"
AC_SEARCH_LIBS(XML_ParserCreate, expat, [],
[AC_MSG_ERROR([Can't find expat library. Please install expat.])])
EXPAT_LIBS="$LIBS"
LIBS="$SAVE_LIBS"
AC_SUBST(EXPAT_LIBS)
])
2010-08-03 21:26:44 +08:00
2016-02-29 20:59:51 +08:00
AM_CONDITIONAL([DTD_VALIDATION], [test "x$enable_dtd_validation" = "xyes"])
if test "x$enable_dtd_validation" = "xyes"; then
2015-11-10 07:53:08 +08:00
PKG_CHECK_MODULES(LIBXML, [libxml-2.0])
AC_DEFINE(HAVE_LIBXML, 1, [libxml-2.0 is available])
AC_CONFIG_LINKS([src/wayland.dtd.embed:protocol/wayland.dtd])
fi
2012-02-23 13:58:37 +08:00
AC_PATH_PROG(XSLTPROC, xsltproc)
2012-03-01 01:49:25 +08:00
AM_CONDITIONAL([HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"])
2012-02-23 13:58:37 +08:00
2012-12-02 00:33:23 +08:00
AC_MSG_CHECKING([for docbook manpages stylesheet])
MANPAGES_STYLESHEET=http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
AC_PATH_PROGS_FEATURE_CHECK([XSLTPROC_TMP], [xsltproc],
AS_IF([`"$ac_path_XSLTPROC_TMP" --nonet "$MANPAGES_STYLESHEET" > /dev/null 2>&1`],
[HAVE_MANPAGES_STYLESHEET=yes]))
if test "x$HAVE_MANPAGES_STYLESHEET" = "xyes"; then
AM_CONDITIONAL([HAVE_MANPAGES_STYLESHEET], true)
AC_SUBST(MANPAGES_STYLESHEET)
AC_MSG_RESULT([yes])
else
AM_CONDITIONAL([HAVE_MANPAGES_STYLESHEET], false)
AC_MSG_RESULT([no])
fi
2012-10-13 01:54:45 +08:00
AM_CONDITIONAL(BUILD_DOCS, [test x$enable_documentation = xyes])
2012-03-18 01:09:39 +08:00
if test "x$enable_documentation" = "xyes"; then
2012-10-13 01:54:45 +08:00
AC_PATH_PROG(DOXYGEN, doxygen)
if test "x$DOXYGEN" = "x"; then
AC_MSG_ERROR([Documentation build requested but doxygen not found. Install doxygen or disable the documentation using --disable-documentation])
fi
2014-12-04 10:26:26 +08:00
AC_MSG_CHECKING([for compatible doxygen version])
doxygen_version=`$DOXYGEN --version`
AS_VERSION_COMPARE([$doxygen_version], [1.6.0],
[AC_MSG_RESULT([no])
AC_MSG_ERROR([Doxygen $doxygen_version too old. Doxygen 1.6+ required for documentation build. Install required doxygen version or disable the documentation using --disable-documentation])],
[AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([yes])])
2014-09-04 15:32:10 +08:00
AC_PATH_PROG(XMLTO, xmlto)
2012-10-11 22:42:09 +08:00
2014-09-04 15:32:10 +08:00
if test "x$XMLTO" = "x"; then
AC_MSG_ERROR([Documentation build requested but xmlto not found. Install xmlto or disable the documentation using --disable-documentation])
2012-10-19 23:29:54 +08:00
fi
2015-01-29 09:24:04 +08:00
AC_PATH_PROG(DOT, dot)
if test "x$DOT" = "x"; then
AC_MSG_ERROR([Documentation build requested but graphviz's dot not found. Install graphviz or disable the documentation using --disable-documentation])
fi
AC_MSG_CHECKING([for compatible dot version])
2015-04-03 10:20:00 +08:00
dot_version=`$DOT -V 2>&1|$GREP -o ['[0-9]*\.[0-9]*\.[0-9]*']`
2015-01-29 09:24:04 +08:00
AS_VERSION_COMPARE([$dot_version], [2.26.0],
[AC_MSG_RESULT([no])
AC_MSG_ERROR([Graphviz dot $dot_version too old. Graphviz 2.26+ required for documentation build. Install required graphviz version or disable the documentation using --disable-documentation])],
[AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([yes])])
2012-10-11 22:42:09 +08:00
AC_CONFIG_FILES([
doc/doxygen/wayland.doxygen
])
2012-03-18 01:09:39 +08:00
fi
2014-09-04 15:32:10 +08:00
AM_CONDITIONAL([HAVE_XMLTO], [test "x$XMLTO" != "x"])
2012-02-24 07:42:05 +08:00
2011-02-15 11:17:41 +08:00
AC_CONFIG_FILES([Makefile
2012-05-22 20:39:41 +08:00
cursor/wayland-cursor.pc
2012-05-29 21:53:20 +08:00
cursor/wayland-cursor-uninstalled.pc
2012-02-24 07:42:05 +08:00
doc/Makefile
2013-04-04 03:43:34 +08:00
doc/publican/Makefile
2012-10-11 22:42:09 +08:00
doc/doxygen/Makefile
2012-09-24 19:18:38 +08:00
doc/man/Makefile
2012-05-29 21:53:20 +08:00
src/wayland-server-uninstalled.pc
src/wayland-client-uninstalled.pc
2013-07-02 17:38:15 +08:00
src/wayland-scanner-uninstalled.pc
2011-08-13 03:09:00 +08:00
src/wayland-server.pc
2012-02-23 13:58:37 +08:00
src/wayland-client.pc
2013-07-02 17:38:15 +08:00
src/wayland-scanner.pc
2014-03-07 16:00:18 +08:00
src/wayland-version.h])
2008-12-11 02:44:23 +08:00
AC_OUTPUT