diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:19:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:19:27 +0000 |
commit | e0023883c6d2e6745a19e4b48e186ed156c1fca8 (patch) | |
tree | 1a48b8056ec984385d0d862b683535d04d6ed215 /m4/man-arg-db.m4 | |
parent | Initial commit. (diff) | |
download | man-db-upstream.tar.xz man-db-upstream.zip |
Adding upstream version 2.11.2.upstream/2.11.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | m4/man-arg-db.m4 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/m4/man-arg-db.m4 b/m4/man-arg-db.m4 new file mode 100644 index 0000000..bb1a8db --- /dev/null +++ b/m4/man-arg-db.m4 @@ -0,0 +1,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}]) +]) |