* Added the SHOW PROFILES and SHOW PROFILE statements to display statement profile data, and the accompanying INFORMATION_SCHEMA.PROFILING table. * Added the Uptime_since_flush_status status variable, which indicates the number of seconds since the most recent FLUSH STATUS statement. * Incompatible change in DATE_FORMAT(). * NDB Cluster: The LockPagesInMainMemory configuration parameter has changed its type and possible values. * The bundled yaSSL library was upgraded to version 1.5.8. * The --skip-thread-priority option now is enabled by default for binary Mac OS X distributions. Use of thread priorities degrades performance on Mac OS X. * Added the --disable-grant-options option to configure. * Bug fixes.
20 lines
473 B
Text
20 lines
473 B
Text
$NetBSD: patch-ah,v 1.4 2007/03/11 18:42:28 adam Exp $
|
|
|
|
--- include/my_net.h.orig 2007-03-05 20:21:13.000000000 +0100
|
|
+++ include/my_net.h
|
|
@@ -70,6 +70,15 @@ C_MODE_START
|
|
|
|
#endif
|
|
|
|
+#if defined(__sgi) && !defined(SHUT_RDWR)
|
|
+
|
|
+/*
|
|
+ IRIX 5 does not define SHUT_RDWR
|
|
+*/
|
|
+
|
|
+#define SHUT_RDWR 2
|
|
+#endif
|
|
+
|
|
/*
|
|
On OSes which don't have the in_addr_t, we guess that using uint32 is the best
|
|
possible choice. We guess this from the fact that on HP-UX64bit & FreeBSD64bit
|