Revision 13858,
224 bytes
checked in by tb, 25 years ago
(diff) |
configure.in: Check for <db.h> and <ndbm.h>.
Makefile.in: Include @DEFS@ in the compile commands.
mkcred.c: Include the correct db header depending on configure test results.
|
Line | |
---|
1 | dnl Process this file with autoconf to produce a configure script. |
---|
2 | AC_INIT(mkcred.c) |
---|
3 | |
---|
4 | AC_PROG_CC |
---|
5 | AC_PROG_INSTALL |
---|
6 | |
---|
7 | AC_CHECK_HEADERS(ndbm.h db.h) |
---|
8 | AC_CHECK_FUNC(dbm_open, :, |
---|
9 | AC_CHECK_LIB(db, dbm_open)) |
---|
10 | |
---|
11 | AC_OUTPUT(Makefile) |
---|
Note: See
TracBrowser
for help on using the repository browser.