summaryrefslogtreecommitdiff
path: root/databases/mysql51-client/patches/patch-ah
blob: 5d7f48f612824ceab8cda925fcf23e6aaff23adb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$NetBSD: patch-ah,v 1.2 2010/09/21 15:57:30 taca Exp $

* Don't use "==" in test(1).

--- config/ac-macros/ssl.m4.orig	2010-02-04 11:36:58.000000000 +0000
+++ config/ac-macros/ssl.m4
@@ -105,7 +105,7 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [
   openssl_libs="-L$location/lib/ -lssl -lcrypto"
   MYSQL_CHECK_SSL_DIR([$openssl_includes], [$openssl_libs])
 
-  if test "$mysql_ssl_found" == "no"
+  if test "$mysql_ssl_found" = "no"
   then
     #
     # BUG 764: Compile failure with OpenSSL on Red Hat Linux (krb5.h missing)
@@ -115,7 +115,7 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [
     MYSQL_CHECK_SSL_DIR([$openssl_includes], [$openssl_libs])
   fi
 
-  if test "$mysql_ssl_found" == "no"
+  if test "$mysql_ssl_found" = "no"
   then
     AC_MSG_ERROR([Could not link with SSL libs at $location])
   fi