summaryrefslogtreecommitdiffstats
path: root/m4/man-arg-db.m4
blob: bb1a8db333b643d6b2d7e21e3681550eadd34047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# man-arg-db.m4 serial 1
dnl MAN_ARG_DB
dnl Add a --with-db option.

AC_DEFUN([MAN_ARG_DB],
[
AC_ARG_WITH([db],
[AS_HELP_STRING([--with-db=LIBRARY], [use database library LIBRARY (db5, db4, db3, db2, db1, db, gdbm, ndbm)])],
	[if test "$withval" = "yes" || test "$withval" = "no"
	 then
	 	AC_MSG_ERROR([--with-db requires an argument])
	 else
	 	db=$withval
	 fi],
	[: ${db=no}])
])