blob: e43ebffa80f292b0cb06bf31723432a4551c780b (
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
78
79
80
81
82
83
84
|
dnl file : m4/libodb-mysql.m4
dnl author : Boris Kolpackov <boris@codesynthesis.com>
dnl copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
dnl license : GNU GPL v2; see accompanying LICENSE file
dnl
dnl LIBODB_MYSQL([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
dnl
dnl
AC_DEFUN([LIBODB_MYSQL], [
libodb_mysql_found=no
AC_ARG_WITH(
[libodb-mysql],
[AC_HELP_STRING([--with-libodb-mysql=DIR],[location of libodb-mysql build directory])],
[libodb_mysql_dir=${withval}],
[libodb_mysql_dir=])
AC_MSG_CHECKING([for libodb-mysql])
# If libodb_mysql_dir was given, add the necessary preprocessor and
# linker flags.
#
if test x"$libodb_mysql_dir" != x; then
save_CPPFLAGS="$CPPFLAGS"
save_LDFLAGS="$LDFLAGS"
AS_SET_CATFILE([abs_libodb_mysql_dir], [$ac_pwd], [$libodb_mysql_dir])
CPPFLAGS="$CPPFLAGS -I$abs_libodb_mysql_dir"
LDFLAGS="$LDFLAGS -L$abs_libodb_mysql_dir/odb/mysql"
fi
save_LIBS="$LIBS"
LIBS="-lodb-mysql $LIBS"
CXX_LIBTOOL_LINK_IFELSE(
AC_LANG_SOURCE([[
#include <odb/mysql/exceptions.hxx>
void
f ()
{
}
const char*
g ()
{
try
{
f ();
}
catch (const odb::mysql::database_exception& e)
{
return e.what ();
}
return 0;
}
int
main ()
{
const char* m (g ());
return m != 0;
}
]]),
[libodb_mysql_found=yes])
if test x"$libodb_mysql_found" = xno; then
LIBS="$save_LIBS"
if test x"$libodb_mysql_dir" != x; then
CPPFLAGS="$save_CPPFLAGS"
LDFLAGS="$save_LDFLAGS"
fi
fi
if test x"$libodb_mysql_found" = xyes; then
AC_MSG_RESULT([yes])
$1
else
AC_MSG_RESULT([no])
$2
fi
])dnl
|