pidgin: 20112abc: Fix Perl build by removing functions tha...

kstange at pidgin.im kstange at pidgin.im
Fri Sep 2 02:18:53 EDT 2011


----------------------------------------------------------------------
Revision: 20112abca39ed1b5d1b36c259a68f54bcc9af09b
Parent:   e088be63d0be5c2a471bf1f58423823ec2413a82
Author:   kstange at pidgin.im
Date:     09/02/11 02:09:52
Branch:   im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/20112abca39ed1b5d1b36c259a68f54bcc9af09b

Changelog: 

Fix Perl build by removing functions that are gone from libpurple.

Changes against parent e088be63d0be5c2a471bf1f58423823ec2413a82

  patched  libpurple/plugins/perl/common/Status.xs

-------------- next part --------------
============================================================
--- libpurple/plugins/perl/common/Status.xs	69fa64a67143cf1ee01709ebe65f3a3a169d8269
+++ libpurple/plugins/perl/common/Status.xs	7d060137e9e408b2f5dae818b81dd5fc74fc5938
@@ -74,28 +74,6 @@ BOOT:
 		newCONSTSUB(primitive_stash, (char *)civ->name, newSViv(civ->iv));
 }
 
-void
-purple_presence_add_list(presence, source_list)
-	Purple::Presence presence
-	SV *source_list
-PREINIT:
-	GList *t_GL;
-	int i, t_len;
-PPCODE:
-	t_GL = NULL;
-	t_len = av_len((AV *)SvRV(source_list));
-
-	for (i = 0; i <= t_len; i++) {
-		t_GL = g_list_append(t_GL, SvPVutf8_nolen(*av_fetch((AV *)SvRV(source_list), i, 0)));
-	}
-	purple_presence_add_list(presence, t_GL);
-	g_list_free(t_GL);
-
-void
-purple_presence_add_status(presence, status)
-	Purple::Presence presence
-	Purple::Status status
-
 gint
 purple_presence_compare(presence1, presence2)
 	Purple::Presence presence1
@@ -329,29 +307,10 @@ purple_status_set_active(status, active)
 	Purple::Status status
 	gboolean active
 
-void
-purple_status_set_attr_boolean(status, id, value)
-	Purple::Status status
-	const char *id
-	gboolean value
-
-void
-purple_status_set_attr_string(status, id, value)
-	Purple::Status status
-	const char *id
-	const char *value
-
 MODULE = Purple::Status  PACKAGE = Purple::StatusType  PREFIX = purple_status_type_
 PROTOTYPES: ENABLE
 
 void
-purple_status_type_add_attr(status_type, id, name, value)
-	Purple::StatusType status_type
-	const char *id
-	const char *name
-	Purple::Value value
-
-void
 purple_status_type_destroy(status_type)
 	Purple::StatusType status_type
 


More information about the Commits mailing list