Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
configure.ac 770 B
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
DUNE_AC_INIT # gets module version from dune.module file
AM_INIT_AUTOMAKE
AM_SILENT_RULES
AC_CONFIG_SRCDIR([dune-tectonic.pc.in])
AC_CONFIG_HEADERS([config.h])

DUNE_CHECK_ALL

AC_ARG_WITH([cairomm], AS_HELP_STRING([--with-cairomm], [Use cairomm]))

AS_IF([test "x$with_cairomm" != "xno"], [
   PKG_CHECK_MODULES([CAIROMM], [cairomm-1.0],
                     [AM_CONDITIONAL(CAIROMM, true)
                      AC_DEFINE([HAVE_CAIROMM], [1], [If CairoMM is available])
   ])
])


AC_CONFIG_FILES([
  Makefile
  src/Makefile
  dune/Makefile
  dune/tectonic/Makefile
  m4/Makefile
  dune-tectonic.pc
])
AC_OUTPUT
# finally print the summary information
DUNE_SUMMARY_ALL