Created
November 15, 2017 13:36
-
-
Save Leonidas-from-XIV/d3d75251390d144e094a97adc0b65eab to your computer and use it in GitHub Desktop.
mysq_config because homebrew mysql is broken
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
case "$1" in | |
"--libs") | |
echo "-L/usr/local/Cellar/mysql-connector-c/6.1.11/lib -lmysqlclient -lssl -ldl -lm -lpthread" | |
;; | |
*) | |
/usr/local/Cellar/mysql-connector-c/6.1.11/bin/mysql_config "$@" | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment