Commit 0c77c5f6 authored by Sergei Krivonos's avatar Sergei Krivonos

MDEV-19129: Xcode compatibility update: #include <editline/readline.h> path

parent 5d6f3ceb
...@@ -90,7 +90,11 @@ extern "C" { ...@@ -90,7 +90,11 @@ extern "C" {
#if defined(__WIN__) #if defined(__WIN__)
#include <conio.h> #include <conio.h>
#else #else
#include <readline.h> # ifdef __APPLE__
# include <editline/readline.h>
# else
# include <readline.h>
# endif
#define HAVE_READLINE #define HAVE_READLINE
#define USE_POPEN #define USE_POPEN
#endif #endif
......
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