aboutsummaryrefslogtreecommitdiff
path: root/mysql/buildfile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-11-27 13:12:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-11-27 13:12:18 +0200
commitc8e97ed801b6e781055d539550577640b2357e59 (patch)
treea87db80465434f3bf7073504d2a17ee46aa2350a /mysql/buildfile
parent453de72591a4bb45d0907b234b9f88272b38f8a1 (diff)
Use compiler class instead of id where appropriate
Diffstat (limited to 'mysql/buildfile')
-rw-r--r--mysql/buildfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql/buildfile b/mysql/buildfile
index f3f5339..1c7b0ef 100644
--- a/mysql/buildfile
+++ b/mysql/buildfile
@@ -190,13 +190,13 @@ libmysql/: cc.poptions += $sql_poptions
if ($tclass == 'windows')
libmysql/authentication_win/: cc.poptions += -DSECURITY_WIN32
-if ($tsys == 'win32-msvc')
+if ($c.class == 'msvc')
{
# Disable warnings that pop up with /W3.
#
cc.coptions += /wd4311 /wd4113 /wd4996 /wd4244 /wd4267 /wd4334 /wd4800 /wd4091
}
-else
+elif ($c.class == 'gcc')
{
# We don't care about C++ ABI specification conformance, especially given
# that only C functions are exported. So we omit -fabi-version=2.