78591cea48
MariaDB is a fork of MySQL relational database management system. It is an enhanced, drop-in replacement for MySQL. This package contains client libraries.
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
$NetBSD: patch-client_mysqladmin.cc,v 1.1 2015/04/16 20:20:15 ryoon Exp $
|
|
|
|
Redefine signals for Irix.
|
|
|
|
--- client/mysqladmin.cc.orig 2015-02-13 12:07:00.000000000 +0000
|
|
+++ client/mysqladmin.cc
|
|
@@ -30,6 +30,11 @@
|
|
#define SHUTDOWN_DEF_TIMEOUT 3600 /* Wait for shutdown */
|
|
#define MAX_TRUNC_LENGTH 3
|
|
|
|
+#if defined(_SCO_DS)
|
|
+#include "../strtoull.c"
|
|
+#define strtoull pkgsrc_strtoull
|
|
+#endif
|
|
+
|
|
char *host= NULL, *user= 0, *opt_password= 0,
|
|
*default_charset= (char*) MYSQL_AUTODETECT_CHARSET_NAME;
|
|
char truncated_var_names[MAX_MYSQL_VAR][MAX_TRUNC_LENGTH];
|
|
@@ -334,8 +339,14 @@ int main(int argc,char *argv[])
|
|
if (tty_password)
|
|
opt_password = get_tty_password(NullS);
|
|
|
|
- (void) signal(SIGINT,endprog); /* Here if abort */
|
|
- (void) signal(SIGTERM,endprog); /* Here if abort */
|
|
+#ifdef IRIX5
|
|
+#define _MYSQL_END_TYPE (void (*)(...))
|
|
+#else
|
|
+#define _MYSQL_END_TYPE
|
|
+#endif
|
|
+
|
|
+ (void) signal(SIGINT,_MYSQL_END_TYPE endprog); /* Here if abort */
|
|
+ (void) signal(SIGTERM,_MYSQL_END_TYPE endprog);/* Here if abort */
|
|
|
|
sf_leaking_memory=0; /* from now on we cleanup properly */
|
|
|