Fix building python bindings: Skip bindings for virSaveLastError and

virFreeError
This commit is contained in:
Cole Robinson 2009-02-16 22:44:49 +00:00
parent 0bb6f816e3
commit a3d1fb9cf3
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Mon Feb 16 17:53:24 EST 2009 Cole Robinson <crobinso@redhat.com>
* python/generate.py: Skip bindings for virSaveLastError and
virFreeError
Fri Feb 13 19:04:57 IST 2009 Mark McLoughlin <markmc@redhat.com>
* src/libvirt_private.syms, src/util.[ch]: add

View File

@ -344,6 +344,8 @@ skip_function = (
'virDefaultErrorFunc', # Python virErrorFuncHandler impl calls this from C
'virConnectDomainEventRegister', # overridden in virConnect.py
'virConnectDomainEventDeregister', # overridden in virConnect.py
'virSaveLastError', # We have our own python error wrapper
'virFreeError', # Only needed if we use virSaveLastError
)