index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Mark Weiman <mark.weiman@markzz.com> | 2021-04-16 23:45:21 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2021-04-19 17:08:40 +1000 |
commit | 207f0439eeecb505f74590af481236ec60c09876 (patch) | |
tree | 6575d40e466e14e9126be518f6c8cc6610a150ab | |
parent | c294b7cb4c3a160cbbbe404baeaa23a3c8290a99 (diff) |
-rw-r--r-- | meson.build | 4 |
diff --git a/meson.build b/meson.build index 579ff2ed..f76a647b 100644 --- a/meson.build +++ b/meson.build @@ -146,7 +146,9 @@ foreach sym : [ 'tcflush', ] have = cc.has_function(sym, args : '-D_GNU_SOURCE') - conf.set10('HAVE_' + sym.to_upper(), have) + if have + conf.set10('HAVE_' + sym.to_upper(), have) + endif endforeach foreach member : [ |