Mercurial > dropbear
comparison configure.ac @ 1193:da1ed4fcdc4a
The '==' comparision operator is not defined by POSIX, use '=' instead
author | Juergen Daubert <jue@jue.li> |
---|---|
date | Mon, 30 Nov 2015 20:55:07 +0800 |
parents | a4ce76e6fb63 |
children | 94d4038bb34c |
comparison
equal
deleted
inserted
replaced
1192:af940cefdba1 | 1193:da1ed4fcdc4a |
---|---|
90 [ | 90 [ |
91 CRYPTLIB="-lcrypt" | 91 CRYPTLIB="-lcrypt" |
92 found_crypt_func=here | 92 found_crypt_func=here |
93 ]) | 93 ]) |
94 AC_SUBST(CRYPTLIB) | 94 AC_SUBST(CRYPTLIB) |
95 if test "t$found_crypt_func" == there; then | 95 if test "t$found_crypt_func" = there; then |
96 AC_DEFINE(HAVE_CRYPT, 1, [crypt() function]) | 96 AC_DEFINE(HAVE_CRYPT, 1, [crypt() function]) |
97 fi | 97 fi |
98 | 98 |
99 # Check if zlib is needed | 99 # Check if zlib is needed |
100 AC_ARG_WITH(zlib, | 100 AC_ARG_WITH(zlib, |