Skip to content

Commit

Permalink
add pkg-config to dependencies to solve openssl linking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapis committed Apr 30, 2012
1 parent 60997e1 commit 4640006
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions shell/functions
Expand Up @@ -13,13 +13,16 @@ tokaidoapp_install_dependencies()
{
typeset _set _lib

for _set in libraries
for _set in libraries tools
do
set_install ${_set}
done

tokaido_install_package libyaml
tokaido_install_package zlib
for _lib in pkg-config libyaml zlib
do
tokaido_install_package ${_lib}
done

if os is darwin
then
# TODO: why limit openssl on osx ?
Expand Down

0 comments on commit 4640006

Please sign in to comment.