|
Last change
on this file since 5 was 1, checked in by Paul Smedley, 10 years ago |
|
Initial commit of Heimdal 1.5.3
|
|
File size:
473 bytes
|
| Line | |
|---|
| 1 | dnl $Id$
|
|---|
| 2 | dnl
|
|---|
| 3 | dnl Test for `struct spwd'
|
|---|
| 4 |
|
|---|
| 5 | AC_DEFUN([AC_KRB_STRUCT_SPWD], [
|
|---|
| 6 | AC_MSG_CHECKING(for struct spwd)
|
|---|
| 7 | AC_CACHE_VAL(ac_cv_struct_spwd, [
|
|---|
| 8 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
|---|
| 9 | #include <pwd.h>
|
|---|
| 10 | #ifdef HAVE_SHADOW_H
|
|---|
| 11 | #include <shadow.h>
|
|---|
| 12 | #endif]],[[struct spwd foo;]])],
|
|---|
| 13 | [ac_cv_struct_spwd=yes],
|
|---|
| 14 | [ac_cv_struct_spwd=no])
|
|---|
| 15 | ])
|
|---|
| 16 | AC_MSG_RESULT($ac_cv_struct_spwd)
|
|---|
| 17 |
|
|---|
| 18 | if test "$ac_cv_struct_spwd" = "yes"; then
|
|---|
| 19 | AC_DEFINE(HAVE_STRUCT_SPWD, 1, [define if you have struct spwd])
|
|---|
| 20 | fi
|
|---|
| 21 | ])
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.