Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 281130 | Differences between
and this patch

Collapse All | Expand All

(-)speech-dispatcher-0.6.7.orig/configure.in (+3 lines)
Lines 25-30 Link Here
25
AC_PROG_GCC_TRADITIONAL
25
AC_PROG_GCC_TRADITIONAL
26
AC_CHECK_FUNCS(select socket)
26
AC_CHECK_FUNCS(select socket)
27
27
28
AC_GNU_SOURCE
29
AC_CHECK_FUNCS([getline])
30
28
AC_PROG_INSTALL
31
AC_PROG_INSTALL
29
AC_PROG_MAKE_SET
32
AC_PROG_MAKE_SET
30
33
(-)speech-dispatcher-0.6.7.orig/src/modules/module_main.c (+4 lines)
Lines 21-28 Link Here
21
 * $Id: module_main.c,v 1.16 2008-06-27 12:29:26 hanke Exp $
21
 * $Id: module_main.c,v 1.16 2008-06-27 12:29:26 hanke Exp $
22
 */
22
 */
23
23
24
#include "config.h"
25
26
#ifndef HAVE_GETLINE
24
/* So that gcc doesn't comply */
27
/* So that gcc doesn't comply */
25
int getline(char**, size_t*, FILE*);
28
int getline(char**, size_t*, FILE*);
29
#endif
26
30
27
#define PROCESS_CMD(command, function) \
31
#define PROCESS_CMD(command, function) \
28
if (!strcmp(cmd_buf, #command"\n")){ \
32
if (!strcmp(cmd_buf, #command"\n")){ \
(-)speech-dispatcher-0.6.7.orig/src/modules/module_utils.h (-1 / +3 lines)
Lines 45-50 Link Here
45
#include <sys/sem.h>
45
#include <sys/sem.h>
46
46
47
#include "spd_audio.h"
47
#include "spd_audio.h"
48
#include "config.h"
48
49
49
typedef struct{
50
typedef struct{
50
  char* audio_output_method;
51
  char* audio_output_method;
Lines 419-427 Link Here
419
void module_report_event_pause(void);
420
void module_report_event_pause(void);
420
421
421
422
422
423
#ifndef HAVE_GETLINE
423
/* So that gcc doesn't complain */
424
/* So that gcc doesn't complain */
424
int getline(char**, size_t*, FILE*);
425
int getline(char**, size_t*, FILE*);
426
#endif
425
427
426
pthread_mutex_t module_stdout_mutex;
428
pthread_mutex_t module_stdout_mutex;
427
429

Return to bug 281130