source: git/m4/dbm-check.m4 @ 952bd16

spielwiese
Last change on this file since 952bd16 was b7cad8c, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: static handling of DBM links
  • Property mode set to 100644
File size: 298 bytes
Line 
1AC_DEFUN([SING_CHECK_DBM],
2[
3
4AC_ARG_WITH(
5  dbm,
6  [  --without-dbm           do not use dbm (no DBM links)])
7
8AC_MSG_CHECKING(whether to have dbm links)
9
10if test "$with_dbm" != no; then
11  AC_DEFINE([HAVE_DBM], [1], [Define to have dbm links])
12  AC_MSG_RESULT(yes)
13else
14  AC_MSG_RESULT(no)
15fi
16
17])
Note: See TracBrowser for help on using the repository browser.