Commit a1170303 authored by Sergei Golubchik's avatar Sergei Golubchik

MDEV-8131 MariaDB does not build on hurd-i386:...

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
parent 3288f266
......@@ -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>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment