TomJeffries
TomJeffries

Reputation: 568

Installing pkg-config on OSX 10.6

Pardon a question from a non-linux guy.

I'm trying to build some source code that requires pkg-config on OSX 10.6. I've found lots of instructions on how to do it, but they all require compiling pkg-config, and I get a variety of errors with each set of instructions.

If I knew more linux commands I'm sure it would be simple, but the time deadlines are such that I'd rather not become an expert in the creation and installation of a Linux tool. If one of the gurus of linux can guide me it would be greatly appreciated.

Upvotes: 1

Views: 6147

Answers (1)

Jason
Jason

Reputation: 847

You can always use homebrew(Link) to install pkg-config and many other "linux" softwares on osx.

brew install pkg-config

Upvotes: 2

Related Questions