summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2009-09-23 12:51:55 -0400
committerCole Robinson <crobinso@redhat.com>2009-10-05 13:31:38 -0400
commit3b8720b5d8c73a7f753543eeee89bafa890efe4a (patch)
treea4fd00562198873540796a1ff63249f15c139d2e /tests
parent4659775fd18ffb4264fb4e225996f800319c3613 (diff)
python: Fix generated virInterface method names
A mistake in the generator was causing virInterface methods to be generated with unpredicatable names ('ceUndefine', instead of just 'undefine'). This fixes the method names to match existing convention. Does anyone care if we are breaking API compat? My guess is that no one is using the python interface bindings yet. Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'tests')
0 files changed, 0 insertions, 0 deletions
CONFIG], [ AC_ARG_WITH(jabber, [ If you want to use Jabber protocol for messaging: AC_HELP_STRING([--with-jabber@<:@=DIR@:>@],[Include Jabber support @<:@default=no@:>@. DIR is the iksemel library install directory.])],[ if test "$withval" = "no"; then want_jabber="no" _libiksemel_with="no" elif test "$withval" = "yes"; then want_jabber="yes" _libiksemel_with="yes" else want_jabber="yes" _libiksemel_with=$withval fi ],[_libiksemel_with=ifelse([$1],,[no],[$1])]) if test "x$_libiksemel_with" != x"no"; then if test "$_libiksemel_with" = "yes"; then PKG_CHECK_MODULES(IKSEMEL,iksemel, [ JABBER_INCDIR=$IKSEMEL_CPPFLAGS JABBER_LIBDIR=$IKSEMEL_LIBS JABBER_LIBS="-liksemel" ],[ found_iksemel="no" found_jabber="no" ]) else AC_MSG_CHECKING(for iksemel support) if test -f $_libiksemel_with/include/iksemel.h; then JABBER_INCDIR=-I$_libiksemel_with/include JABBER_LIBDIR=-L$_libiksemel_with/lib JABBER_LIBS="-liksemel" AC_MSG_RESULT(yes) else found_iksemel="no" found_jabber="no" AC_MSG_RESULT(no) fi fi if test "x$found_iksemel" != "xno" ; then AC_CHECK_FUNCS(getaddrinfo) JABBER_CPPFLAGS=$JABBER_INCDIR JABBER_LDFLAGS="$JABBER_LIBDIR" if test "x$enable_static" = "xyes"; then for i in -liksemel -lgnutls -ltasn1 -lgcrypt -lgpg-error; do case $i in -liksemel) ;; -l*) _lib_name=`echo "$i" | cut -b3-` AC_CHECK_LIB($_lib_name , main,[ JABBER_LIBS="$JABBER_LIBS $i" ],[ AC_MSG_ERROR([Not found $_lib_name library]) ]) ;; esac done fi found_iksemel="yes" found_jabber="yes" AC_DEFINE(HAVE_IKSEMEL,1,[Define to 1 if Iksemel library should be enabled.]) AC_DEFINE(HAVE_JABBER,1,[Define to 1 if Jabber should be enabled.]) fi fi AC_SUBST(JABBER_CPPFLAGS) AC_SUBST(JABBER_LDFLAGS) AC_SUBST(JABBER_LIBS) unset _libiksemel_with ])dnl