From 9ef14b322f13429583ea9e010b42f85310709ef6 Mon Sep 17 00:00:00 2001 From: Nicholas Dudfield Date: Wed, 31 Jul 2013 10:33:28 -0700 Subject: [PATCH] Statically link to openssl and protocol buffers --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 043423c56..8dae71992 100644 --- a/SConstruct +++ b/SConstruct @@ -53,9 +53,9 @@ else: env.Replace(CTAGS = CTAGS, CTAGSOPTIONS = '--tag-relative') # Use openssl -env.ParseConfig('pkg-config --cflags --libs openssl') +env.ParseConfig('pkg-config --static --cflags --libs openssl') # Use protobuf -env.ParseConfig('pkg-config --cflags --libs protobuf') +env.ParseConfig('pkg-config --static --cflags --libs protobuf') # Beast uses kvm on FreeBSD if FreeBSD: