summaryrefslogtreecommitdiffstats
path: root/third_party/libxml
diff options
context:
space:
mode:
authorspang <spang@chromium.org>2015-02-05 15:09:31 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-05 23:10:28 +0000
commite1393cf52aa9e7b8cbcf0a4776030253e8de2583 (patch)
treecec88478839047e0b0ca0181a50bf81a1dc66873 /third_party/libxml
parent3fb85eb7a52c7c26093acef339432fee3b3eec29 (diff)
downloadchromium_src-e1393cf52aa9e7b8cbcf0a4776030253e8de2583.zip
chromium_src-e1393cf52aa9e7b8cbcf0a4776030253e8de2583.tar.gz
chromium_src-e1393cf52aa9e7b8cbcf0a4776030253e8de2583.tar.bz2
libxml2: Add missing dependency on libm
The library uses functions from "math.h". This fixes the embedded build with -Wl,-z,defs. BUG=445627 TEST=linux_ecs_ozone tryjob TBR=cpu Review URL: https://codereview.chromium.org/901273002 Cr-Commit-Position: refs/heads/master@{#314906}
Diffstat (limited to 'third_party/libxml')
-rw-r--r--third_party/libxml/libxml.gyp1
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/libxml/libxml.gyp b/third_party/libxml/libxml.gyp
index dcc75b9..1decbe9 100644
--- a/third_party/libxml/libxml.gyp
+++ b/third_party/libxml/libxml.gyp
@@ -237,6 +237,7 @@
'libraries': [
# We need dl for dlopen() and friends.
'-ldl',
+ '-lm',
],
},
}],