source: branches/samba-3.2.x/source/lib/replace/getpass.m4

Last change on this file was 133, checked in by Paul Smedley, 17 years ago

Update trunk to 3.2.0pre3

File size: 985 bytes
Line 
1AC_CHECK_FUNC(getpass, libreplace_cv_HAVE_GETPASS=yes)
2AC_CHECK_FUNC(getpassphrase, libreplace_cv_HAVE_GETPASSPHRASE=yes)
3if test x"$libreplace_cv_HAVE_GETPASS" = x"yes" -a x"$libreplace_cv_HAVE_GETPASSPHRASE" = x"yes"; then
4 AC_DEFINE(REPLACE_GETPASS_BY_GETPASSPHRASE, 1, [getpass returns <9 chars where getpassphrase returns <265 chars])
5 AC_DEFINE(REPLACE_GETPASS,1,[Whether getpass should be replaced])
6 LIBREPLACEOBJ="${LIBREPLACEOBJ} getpass.o"
7else
8
9AC_CACHE_CHECK([whether getpass should be replaced],libreplace_cv_REPLACE_GETPASS,[
10SAVE_CPPFLAGS="$CPPFLAGS"
11CPPFLAGS="$CPPFLAGS -I$libreplacedir/"
12AC_TRY_COMPILE([
13#include "confdefs.h"
14#define NO_CONFIG_H
15#include "$libreplacedir/getpass.c"
16],[],libreplace_cv_REPLACE_GETPASS=yes,libreplace_cv_REPLACE_GETPASS=no)
17CPPFLAGS="$SAVE_CPPFLAGS"
18])
19if test x"$libreplace_cv_REPLACE_GETPASS" = x"yes"; then
20 AC_DEFINE(REPLACE_GETPASS,1,[Whether getpass should be replaced])
21 LIBREPLACEOBJ="${LIBREPLACEOBJ} getpass.o"
22fi
23
24fi
Note: See TracBrowser for help on using the repository browser.