blob: 8fca4934d89f869ad385b0e9461154e84786af0d (
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
|
dnl file : m4/database.m4
dnl author : Boris Kolpackov <boris@codesynthesis.com>
dnl copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
dnl license : GNU GPL v2; see accompanying LICENSE file
dnl
dnl DATABASE
dnl
AC_DEFUN([DATABASE], [
database=none
AC_MSG_CHECKING([for database to use])
AC_ARG_WITH(
[database],
[AC_HELP_STRING([--with-database=db],
[database to use for tests; valid values are: 'mysql'])],
[case $withval in
no | yes)
AC_MSG_RESULT([])
AC_MSG_ERROR([no database specified in the --with-database option])
;;
mysql)
database=mysql
AC_DEFINE([DB_ID_MYSQL], [1], [Using MySQL.])
;;
*)
AC_MSG_RESULT([])
AC_MSG_ERROR([unknown database $withval])
;;
esac],
[
AC_MSG_RESULT([])
AC_MSG_ERROR([no database specified with the --with-database option])
])
AC_MSG_RESULT([$database])
AC_SUBST([database])
AM_CONDITIONAL([DB_ID_MYSQL], [test x$database = xmysql])
])dnl
|