aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: 639899ec49250a6cfc409f798c143f66e34a7d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# file      : configure.ac
# author    : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
# license   : MIT; see accompanying LICENSE file

AC_PREREQ(2.60)
AC_INIT([libcutl], [__value__(version)], [libcutl-users@codesynthesis.com])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([cutl/exception.hxx])

AM_INIT_AUTOMAKE([-Wall -Werror foreign nostdinc subdir-objects dist-bzip2 dist-zip tar-ustar])

LT_INIT([win32-dll])

AC_CANONICAL_HOST

# Check for C++ compiler and use it to compile the tests.
#
AC_PROG_CXX
AC_LANG(C++)

# Create the libtool executable so that we can use it in further tests.
#
LT_OUTPUT

# Check if we need to use external Boost.
#
AC_MSG_CHECKING([if we should use external boost])

AC_ARG_WITH(
  [external-boost],
  [AC_HELP_STRING([--with-external-boost],[use external boost instead of the internal subset])],
  [external_boost=${withval}],
  [external_boost=no])

if test x"$external_boost" != xno; then
  AC_MSG_RESULT([yes])

  # Check if we have Boost.
  #
  boost_found=yes
  LIBBOOST([],[boost_found=no])
  LIBBOOST_REGEX([],[boost_found=no])
  LIBBOOST_SYSTEM

  if test x"$boost_found" == xno; then
    AC_MSG_ERROR([boost regex is not found; consider using CPPFLAGS/LDFLAGS or --with-boost=DIR to specify its location])
  fi

  AC_DEFINE([LIBCUTL_EXTERNAL_BOOST], [1], [Use external boost.])
else
  AC_MSG_RESULT([no])
fi

AM_CONDITIONAL([LIBCUTL_EXTERNAL_BOOST], [test x"$external_boost" != xno])


# Define LIBODB_STATIC_LIB if we are build static library on certain platforms.
#
STATIC_LIB([LIBCUTL_STATIC_LIB], [Static library interface.])

# Allow the user to specify the pkgconfig directory.
#
PKGCONFIG

# Check if we should disable rpath.
#
DISABLE_RPATH

# Output.
#
AC_CONFIG_HEADERS([cutl/config.h cutl/details/config.h])
AC_CONFIG_FILES([
  __path__(config_files)
])
AC_OUTPUT