diff options
author | mat <mat@FreeBSD.org> | 2017-11-06 22:24:56 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2017-11-06 22:24:56 +0800 |
commit | 1b2a051d30ae0fb075a6bc4092b34d0266df2d54 (patch) | |
tree | 595b79de5ab14cdba6738a84e6eba30a827f6f89 /net-mgmt/nagios-plugins | |
parent | b61883581350c8725bdd6e566162a53563b6a52e (diff) | |
download | freebsd-ports-gnome-1b2a051d30ae0fb075a6bc4092b34d0266df2d54.tar.gz freebsd-ports-gnome-1b2a051d30ae0fb075a6bc4092b34d0266df2d54.tar.zst freebsd-ports-gnome-1b2a051d30ae0fb075a6bc4092b34d0266df2d54.zip |
Fix build with MariaDB 10.2.
PR: 223387
Submitted by: brnrd
Reported by: fbsd98816551 avksrv org
Sponsored by: Absolight
Diffstat (limited to 'net-mgmt/nagios-plugins')
-rw-r--r-- | net-mgmt/nagios-plugins/files/patch-plugins_common.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net-mgmt/nagios-plugins/files/patch-plugins_common.h b/net-mgmt/nagios-plugins/files/patch-plugins_common.h new file mode 100644 index 000000000000..2a9091fd8e98 --- /dev/null +++ b/net-mgmt/nagios-plugins/files/patch-plugins_common.h @@ -0,0 +1,24 @@ +From 930ede8378245eb6bd31eaf1d9103f027df0f7a0 Mon Sep 17 00:00:00 2001 +From: Bernard Spil <brnrd@FreeBSD.org> +Date: Sun, 5 Nov 2017 10:43:56 +0100 +Subject: [PATCH] plugins/common.h: Set default MySQL port + +As of MariaDB 10.2 the headers for client no longer set the +default MySQL port. Patch fixes this for any version of MariaDB +or MySQL into the future. + +See also: https://bugs.freebsd.org/223387 +--- plugins/common.h.orig 2017-01-19 16:01:31 UTC ++++ plugins/common.h +@@ -168,6 +168,11 @@ + # endif + #endif + ++/* MariaDB 10.2 client does not set MYSQL_PORT */ ++#ifndef MYSQL_PORT ++# define MYSQL_PORT 3306 ++#endif ++ + /* + * + * Standard Values |