summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_abi.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-18 17:35:53 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-18 17:35:53 +1000
commit1a73e967f594c739f7533fdce0e1c18579d0bf21 (patch)
tree9489319c35fa8990de5956b9d4d3f6d059aea3a0 /buildtools/wafsamba/samba_abi.py
parent3f1ebe805bbd38a4cf34f9feb1837f92a8de75d9 (diff)
downloadsamba-1a73e967f594c739f7533fdce0e1c18579d0bf21.tar.gz
samba-1a73e967f594c739f7533fdce0e1c18579d0bf21.tar.bz2
samba-1a73e967f594c739f7533fdce0e1c18579d0bf21.zip
build: added abi_type_maps for FC12 struct va_list
fedora12 x86 uses "struct va_list"
Diffstat (limited to 'buildtools/wafsamba/samba_abi.py')
-rw-r--r--buildtools/wafsamba/samba_abi.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py
index 2b6871a7ee..6df3ac3187 100644
--- a/buildtools/wafsamba/samba_abi.py
+++ b/buildtools/wafsamba/samba_abi.py
@@ -7,7 +7,8 @@ from TaskGen import feature, before, after
# please add new type mappings into the list below
abi_type_maps = {
'_Bool' : 'bool',
- '__va_list_tag' : 'va_list'
+ '__va_list_tag' : 'va_list',
+ 'struct va_list' : 'va_list'
}
def normalise_signature(sig):