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
|
dnl file : m4/database.m4
dnl copyright : Copyright (c) 2009-2012 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', 'sqlite', 'pgsql', and 'oracle'])],
[case $withval in
no | yes)
AC_MSG_RESULT([])
AC_MSG_ERROR([no database specified in the --with-database option])
;;
mysql)
database=mysql
AC_DEFINE([DATABASE_MYSQL], [1], [Using MySQL.])
;;
sqlite)
database=sqlite
AC_DEFINE([DATABASE_SQLITE], [1], [Using SQLite.])
;;
pgsql)
database=pgsql
AC_DEFINE([DATABASE_PGSQL], [1], [Using PostgreSQL.])
;;
oracle)
database=oracle
AC_DEFINE([DATABASE_ORACLE], [1], [Using Oracle.])
;;
mssql)
database=mssql
AC_DEFINE([DATABASE_MSSQL], [1], [Using SQL Server.])
;;
*)
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([DATABASE_MYSQL], [test x$database = xmysql])
AM_CONDITIONAL([DATABASE_SQLITE], [test x$database = xsqlite])
AM_CONDITIONAL([DATABASE_PGSQL], [test x$database = xpgsql])
AM_CONDITIONAL([DATABASE_ORACLE], [test x$database = xoracle])
AM_CONDITIONAL([DATABASE_MSSQL], [test x$database = xmssql])
])dnl
|