# HG changeset patch # User Juergen Daubert # Date 1448888107 -28800 # Node ID da1ed4fcdc4a4d7d38044c15f76800d725291fca # Parent af940cefdba1afedc2dd3840bffce8e9d2465035 The '==' comparision operator is not defined by POSIX, use '=' instead diff -r af940cefdba1 -r da1ed4fcdc4a configure.ac --- a/configure.ac Fri Nov 27 22:19:08 2015 +0800 +++ b/configure.ac Mon Nov 30 20:55:07 2015 +0800 @@ -92,7 +92,7 @@ found_crypt_func=here ]) AC_SUBST(CRYPTLIB) -if test "t$found_crypt_func" == there; then +if test "t$found_crypt_func" = there; then AC_DEFINE(HAVE_CRYPT, 1, [crypt() function]) fi