Joined December 2013
·
Achievements
39 Karma
0 Total ProTip Views
Forked
Have a project valued enough to be forked by someone else
Mongoose 3
Have at least three original repos where Ruby is the dominant language
Mongoose
Have at least one original repo where Ruby is the dominant language
Charity
Fork and commit to someone's open source project in need
I had a trouble with compiling stlink on Mavericks with homebrew. ./configure says libusb not found. It because pkg-config can't found it. Setting right PKGCONFIGPATH helps. In my case it was /usr/local/lib/pkgconfig. If you experienced:
checking for USB... no
configure: error: *** Required libusb-1.0 >= 1.0.0 not installed ***
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
should helps.