Skip to content

Instantly share code, notes, and snippets.

@Leonidas-from-XIV
Created November 15, 2017 13:36
Show Gist options
  • Save Leonidas-from-XIV/d3d75251390d144e094a97adc0b65eab to your computer and use it in GitHub Desktop.
Save Leonidas-from-XIV/d3d75251390d144e094a97adc0b65eab to your computer and use it in GitHub Desktop.
mysq_config because homebrew mysql is broken
#!/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