Skip to content

Commit

Permalink
MDEV-19129: Xcode compatibility update: #include <editline/readline.h…
Browse files Browse the repository at this point in the history
…> path
  • Loading branch information
ohhmm committed Oct 30, 2021
1 parent 5d6f3ce commit 0c77c5f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/mysql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ extern "C" {
#if defined(__WIN__)
#include <conio.h>
#else
#include <readline.h>
# ifdef __APPLE__
# include <editline/readline.h>
# else
# include <readline.h>
# endif
#define HAVE_READLINE
#define USE_POPEN
#endif
Expand Down

0 comments on commit 0c77c5f

Please sign in to comment.