diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-18 17:35:53 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-18 17:35:53 +1000 |
commit | 1a73e967f594c739f7533fdce0e1c18579d0bf21 (patch) | |
tree | 9489319c35fa8990de5956b9d4d3f6d059aea3a0 /buildtools | |
parent | 3f1ebe805bbd38a4cf34f9feb1837f92a8de75d9 (diff) | |
download | samba-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')
-rw-r--r-- | buildtools/wafsamba/samba_abi.py | 3 |
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): |