aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2009-06-08 10:32:28 +0000
committerHolger Freyther <zecke@selfish.org>2009-06-08 10:32:28 +0000
commitb424ecb2477026ae3896e12dd1244b5bca3a40ef (patch)
tree7caf25eed1958caf704312aa64d63b40cf9758c9 /configure.in
parenteaf0469a8b4e0fc9416083f97f0a88e06ab305c8 (diff)
crypt detection: Make autoheader happy
Use AC_DEFINE([WHAT], [],[Description]) to make autoheader happy again and autoreconf --install --force succeed.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index f0c0e10c5..69fa1b594 100644
--- a/configure.in
+++ b/configure.in
@@ -10,7 +10,8 @@ AC_PROG_INSTALL
AC_PROG_RANLIB
dnl checks for libraries
-AC_SEARCH_LIBS(crypt, crypt, [LIBCRYPT="-lcrypt";AC_DEFINE(VTY_CRYPT_PW)])
+AC_SEARCH_LIBS(crypt, crypt,
+ [LIBCRYPT="-lcrypt"; AC_DEFINE([VTY_CRYPT_PW], [], [Use crypt functionality of vty.])])
dnl checks for header files
AC_HEADER_STDC