MDEV-8131 MariaDB does not build on hurd-i386: plugin/auth_dialog/dialog.c:172:20: error: 'RTLD_DEFAULT' undeclared

define _GNU_SORUCE before including dlfcn.h
This commit is contained in:
Sergei Golubchik 2015-06-14 18:46:02 +02:00
parent 3288f2667a
commit a117030377

View File

@ -25,6 +25,8 @@
the answer back to the server. No encryption is involved,
the answers are sent in clear text.
*/
#define _GNU_SOURCE 1 /* for RTLD_DEFAULT */
#include <my_global.h>
#include <mysql/client_plugin.h>
#include <mysql.h>