mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
- Fix build on FreeBSD 4.X
PR: ports/85082 Submitted by: Matthew Luckie <mjl@luckie.org.nz> Approved by: bms (maintainer; blanket)
This commit is contained in:
parent
a446c1e3b4
commit
9f8d18db82
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=142777
53
audio/gaim-festival/files/patch-festival.c
Normal file
53
audio/gaim-festival/files/patch-festival.c
Normal file
@ -0,0 +1,53 @@
|
||||
--- festival.c.orig Thu Aug 18 20:02:32 2005
|
||||
+++ festival.c Thu Aug 18 20:11:48 2005
|
||||
@@ -435,10 +435,11 @@
|
||||
{
|
||||
char *stripped;
|
||||
const char *alias = get_best_name(account, who);
|
||||
- silent_joins = NULL;
|
||||
|
||||
GString *buffer= g_string_new("");
|
||||
GString *ascii;
|
||||
+
|
||||
+ silent_joins = NULL;
|
||||
ascii = g_string_new(g_convert (what, strlen (what),
|
||||
"ISO-8859-1", "UTF-8",
|
||||
NULL, NULL, NULL));
|
||||
@@ -613,7 +614,12 @@
|
||||
plugin_load(GaimPlugin *plugin) {
|
||||
|
||||
FILE *which_pf;
|
||||
- char line[1024];
|
||||
+ char line[1024], proc[1024];
|
||||
+ int errno=0;
|
||||
+ void *conv_handle;
|
||||
+ void *blist_handle;
|
||||
+ void *accounts_handle;
|
||||
+
|
||||
which_pf= popen("which festival 2>/dev/null","r");
|
||||
fscanf(which_pf,"%1023s",line);
|
||||
pclose(which_pf);
|
||||
@@ -621,10 +627,8 @@
|
||||
if( *line != '/')
|
||||
return FALSE;
|
||||
|
||||
- char proc[1024];
|
||||
sprintf(proc, "%s %s", snd((char *)gaim_prefs_get_string("/gaim/gtk/sound/method")), line);
|
||||
|
||||
- int errno=0;
|
||||
festival_pf= popen(proc,"w");
|
||||
|
||||
if(errno) {
|
||||
@@ -634,9 +638,9 @@
|
||||
|
||||
load_conf();
|
||||
|
||||
- void *conv_handle = gaim_conversations_get_handle();
|
||||
- void *blist_handle = gaim_blist_get_handle();
|
||||
- void *accounts_handle = gaim_accounts_get_handle();
|
||||
+ conv_handle = gaim_conversations_get_handle();
|
||||
+ blist_handle = gaim_blist_get_handle();
|
||||
+ accounts_handle = gaim_accounts_get_handle();
|
||||
|
||||
gaim_signal_connect(conv_handle, "received-im-msg",
|
||||
plugin, GAIM_CALLBACK(im_recv_im), NULL);
|
Loading…
Reference in New Issue
Block a user