]> TLD Linux GIT Repositories - packages/mysql.git/blob - mysql-dubious-exports.patch
- updated to 5.7.22-22
[packages/mysql.git] / mysql-dubious-exports.patch
1 Prefix mysql_ to the real names of several symbols that have to be exported
2 from libmysqlclient because mysql-connector-odbc and/or PHP depend on them.
3 This limits the intrusion on application namespace.
4
5
6 diff -Naur mysql-5.5.8.orig/include/my_sys.h mysql-5.5.8/include/my_sys.h
7 --- mysql-5.5.8.orig/include/my_sys.h   2010-12-03 12:58:24.000000000 -0500
8 +++ mysql-5.5.8/include/my_sys.h        2010-12-27 14:27:23.956926896 -0500
9 @@ -227,6 +227,7 @@
10  
11  /* charsets */
12  #define MY_ALL_CHARSETS_SIZE 2048
13 +#define default_charset_info mysql_default_charset_info        /* namespace sanity */
14  extern MYSQL_PLUGIN_IMPORT CHARSET_INFO *default_charset_info;
15  extern MYSQL_PLUGIN_IMPORT CHARSET_INFO *all_charsets[MY_ALL_CHARSETS_SIZE];
16  extern CHARSET_INFO compiled_charsets[];
17 @@ -914,6 +915,9 @@
18  extern uint get_collation_number(const char *name);
19  extern const char *get_charset_name(uint cs_number);
20  
21 +#define get_charset mysql_get_charset          /* namespace sanity */
22 +#define get_charset_by_csname mysql_get_charset_by_csname
23 +
24  extern CHARSET_INFO *get_charset(uint cs_number, myf flags);
25  extern CHARSET_INFO *get_charset_by_name(const char *cs_name, myf flags);
26  extern CHARSET_INFO *get_charset_by_csname(const char *cs_name,
27 --- percona-server-5.7.12-5/include/mysql.h.pp~ 2016-06-01 09:44:09.000000000 +0300
28 +++ percona-server-5.7.12-5/include/mysql.h.pp  2016-06-20 09:12:25.119724253 +0300
29 @@ -128,7 +128,7 @@
30  void net_end(NET *net);
31  void net_clear(NET *net, my_bool check_buffer);
32  void net_claim_memory_ownership(NET *net);
33 -my_bool net_realloc(NET *net, size_t length);
34 +my_bool mysql_net_realloc(NET *net, size_t length);
35  my_bool net_flush(NET *net);
36  my_bool my_net_write(NET *net,const unsigned char *packet, size_t len);
37  my_bool net_write_command(NET *net,unsigned char command,
38 --- percona-server-5.7.12-5/include/mysql_com.h~        2016-06-01 09:44:09.000000000 +0300
39 +++ percona-server-5.7.12-5/include/mysql_com.h 2016-06-20 09:12:01.301815678 +0300
40 @@ -509,6 +509,7 @@
41  void net_end(NET *net);
42  void net_clear(NET *net, my_bool check_buffer);
43  void net_claim_memory_ownership(NET *net);
44 +#define net_realloc mysql_net_realloc          /* namespace sanity */
45  my_bool net_realloc(NET *net, size_t length);
46  my_bool        net_flush(NET *net);
47  my_bool        my_net_write(NET *net,const unsigned char *packet, size_t len);
48 --- mysql-5.5.9/include/m_string.h~     2011-01-20 00:37:08.000000000 +0200
49 +++ mysql-5.5.9/include/m_string.h      2011-03-31 16:36:35.184588054 +0300
50 @@ -118,6 +118,7 @@
51  extern size_t strnlen(const char *s, size_t n);
52  #endif
53  
54 +#define is_prefix mysql_is_prefix              /* namespace sanity */
55  extern int is_prefix(const char *, const char *);
56  
57  /* Conversion routines */