Skip to content

Commit

Permalink
Fix build on OpenBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Mar 21, 2011
1 parent ac10176 commit 59e0f1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rakelib/blueprint.rb
Expand Up @@ -44,7 +44,8 @@
when /linux/i
gcc.ldflags << '-Wl,--export-dynamic' << "-lrt" << "-lcrypt"
when /openbsd/i
gcc.ldflags << '-lcrypto' << '-pthread' << '-lssl' << "-ldl" << "-rdynamic"
gcc.ldflags << '-lcrypto' << '-pthread' << '-lssl' << "-rdynamic" << "-Wl,--export-dynamic"
make = "gmake"
when /haiku/i
gcc.ldflags << "-ldl" << "-lnetwork"
when /bsd/i
Expand Down

0 comments on commit 59e0f1d

Please sign in to comment.