summaryrefslogtreecommitdiffstats
path: root/ppapi/native_client
diff options
context:
space:
mode:
authordschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-02 21:50:51 +0000
committerdschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-02 21:50:51 +0000
commitce8234472587956eedb6303e2c03c24f3d8abc26 (patch)
tree47cbb29b1f89a614a188e2490e68c09609da57c8 /ppapi/native_client
parent1ab480348f4ddcadd7aa4acbafc062973d23b8ea (diff)
downloadchromium_src-ce8234472587956eedb6303e2c03c24f3d8abc26.zip
chromium_src-ce8234472587956eedb6303e2c03c24f3d8abc26.tar.gz
chromium_src-ce8234472587956eedb6303e2c03c24f3d8abc26.tar.bz2
Remove -lcrypto from SCons NaCl plugin build
It is no longer necessary, is no longer in the gyp build, and fails on Ubuntu Precise. R=mseaborn@chromium.org BUG= http://code.google.com/p/nativeclient/issues/detail?id=2871 TEST=nacl_integration Review URL: https://chromiumcodereview.appspot.com/10698072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@145202 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r--ppapi/native_client/src/trusted/plugin/build.scons6
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/build.scons b/ppapi/native_client/src/trusted/plugin/build.scons
index 0cc1529..b9a6836 100644
--- a/ppapi/native_client/src/trusted/plugin/build.scons
+++ b/ppapi/native_client/src/trusted/plugin/build.scons
@@ -86,8 +86,8 @@ else:
# The libraries used by both the PPAPI plugin. They and the PPAPI specific
# libraries must come before OS libraries, because they may generate references
-# that are resolved by the OS libraries. E.g., libplatform.a contains
-# references to symbols from libcrypto.so.
+# that are resolved by the OS libraries. E.g., libimc.a contains
+# references to symbols from librt.so.
common_libs = [
'nonnacl_util',
'nonnacl_srpc',
@@ -111,7 +111,7 @@ common_libs = [
os_libs = [ ]
if plugin_env.Bit('linux'):
- os_libs += ['dl', 'crypto', 'rt']
+ os_libs += ['dl', 'rt']
if plugin_env.Bit('windows'):
os_libs += ['gdi32', 'user32', ]