You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2011/12/18 14:38:56 UTC

svn commit: r1220399 - /apr/apr-util/branches/1.4.x/build/crypto.m4

Author: rjung
Date: Sun Dec 18 13:38:56 2011
New Revision: 1220399

URL: http://svn.apache.org/viewvc?rev=1220399&view=rev
Log:
Fix "test" syntax introduced in r1214531.

Backport of r1220395 from apr trunk resp.
r1220397 from apr-util 1.5.x.

Modified:
    apr/apr-util/branches/1.4.x/build/crypto.m4

Modified: apr/apr-util/branches/1.4.x/build/crypto.m4
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.4.x/build/crypto.m4?rev=1220399&r1=1220398&r2=1220399&view=diff
==============================================================================
--- apr/apr-util/branches/1.4.x/build/crypto.m4 (original)
+++ apr/apr-util/branches/1.4.x/build/crypto.m4 Sun Dec 18 13:38:56 2011
@@ -34,7 +34,7 @@ AC_DEFUN([APU_CHECK_CRYPTO], [
       APU_CHECK_CRYPTO_OPENSSL
       APU_CHECK_CRYPTO_NSS
       dnl add checks for other varieties of ssl here
-      if test "$apu_have_crypto" == "0"; then
+      if test "$apu_have_crypto" = "0"; then
         AC_ERROR(Crypto was requested but no crypto library was enabled)
       fi
     fi