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

Collapse All | Expand All

(-)licq-1.3.5.orig/plugins/auto-reply/configure.ac (-1 / +1 lines)
Lines 44-54 Link Here
44
44
45
dnl Switch to C++ mode and check for needed C++ headers
45
dnl Switch to C++ mode and check for needed C++ headers
46
AC_LANG_SAVE
46
AC_LANG_SAVE
47
AC_LANG_CPLUSPLUS
47
AC_LANG_CPLUSPLUS
48
48
49
AC_CHECK_HEADER(vector.h,,
49
AC_CHECK_HEADER(vector,,
50
  AC_MSG_ERROR(You need to have the libstdc++ headers installed))
50
  AC_MSG_ERROR(You need to have the libstdc++ headers installed))
51
51
52
AC_LANG_RESTORE
52
AC_LANG_RESTORE
53
53
54
AC_OUTPUT(
54
AC_OUTPUT(
(-)licq-1.3.5.orig/plugins/auto-reply/src/autoreply.cpp (+1 lines)
Lines 10-19 Link Here
10
#include <ctype.h>
10
#include <ctype.h>
11
#include <stdio.h>
11
#include <stdio.h>
12
#include <stdlib.h>
12
#include <stdlib.h>
13
#include <sys/wait.h>
13
#include <sys/wait.h>
14
#include <signal.h>
14
#include <signal.h>
15
#include <climits>
15
#ifdef HAVE_ERRNO_H
16
#ifdef HAVE_ERRNO_H
16
#include <errno.h>
17
#include <errno.h>
17
#else
18
#else
18
extern int errno;
19
extern int errno;
19
#endif
20
#endif
(-)licq-1.3.5.orig/plugins/email/configure.ac (-1 / +1 lines)
Lines 46-56 Link Here
46
46
47
dnl Switch to C++ mode and check for needed C++ headers
47
dnl Switch to C++ mode and check for needed C++ headers
48
AC_LANG_SAVE
48
AC_LANG_SAVE
49
AC_LANG_CPLUSPLUS
49
AC_LANG_CPLUSPLUS
50
50
51
AC_CHECK_HEADER(vector.h,,
51
AC_CHECK_HEADER(vector,,
52
  AC_MSG_ERROR(You need to have the libstdc++ headers installed))
52
  AC_MSG_ERROR(You need to have the libstdc++ headers installed))
53
53
54
AC_LANG_RESTORE
54
AC_LANG_RESTORE
55
55
56
AC_OUTPUT(
56
AC_OUTPUT(
(-)licq-1.3.5.orig/plugins/email/src/forwarder.cpp (+1 lines)
Lines 7-16 Link Here
7
#include <sys/types.h>
7
#include <sys/types.h>
8
#include <unistd.h>
8
#include <unistd.h>
9
#include <string.h>
9
#include <string.h>
10
#include <ctype.h>
10
#include <ctype.h>
11
#include <stdio.h>
11
#include <stdio.h>
12
#include <climits>
12
#ifdef HAVE_ERRNO_H
13
#ifdef HAVE_ERRNO_H
13
#include <errno.h>
14
#include <errno.h>
14
#else
15
#else
15
extern int errno;
16
extern int errno;
16
#endif
17
#endif
(-)licq-1.3.5.orig/plugins/msn/configure.ac (-1 / +1 lines)
Lines 51-61 Link Here
51
51
52
dnl Switch to C++ mode and check for needed C++ headers
52
dnl Switch to C++ mode and check for needed C++ headers
53
AC_LANG_SAVE
53
AC_LANG_SAVE
54
AC_LANG_CPLUSPLUS
54
AC_LANG_CPLUSPLUS
55
55
56
AC_CHECK_HEADER(vector.h,,
56
AC_CHECK_HEADER(vector,,
57
  AC_MSG_ERROR(You need to have the libstdc++ headers installed))
57
  AC_MSG_ERROR(You need to have the libstdc++ headers installed))
58
58
59
AC_LANG_RESTORE
59
AC_LANG_RESTORE
60
60
61
msn_gcc_major_version=0
61
msn_gcc_major_version=0
(-)licq-1.3.5.orig/plugins/rms/src/rms.cpp (+1 lines)
Lines 7-16 Link Here
7
#include <sys/types.h>
7
#include <sys/types.h>
8
#include <unistd.h>
8
#include <unistd.h>
9
#include <string.h>
9
#include <string.h>
10
#include <ctype.h>
10
#include <ctype.h>
11
#include <stdio.h>
11
#include <stdio.h>
12
#include <climits>
12
#ifdef HAVE_ERRNO_H
13
#ifdef HAVE_ERRNO_H
13
#include <errno.h>
14
#include <errno.h>
14
#else
15
#else
15
extern int errno;
16
extern int errno;
16
#endif
17
#endif
(-)licq-1.3.5.orig/src/fifo.cpp (+1 lines)
Lines 28-37 Link Here
28
#include <stdio.h>
28
#include <stdio.h>
29
#include <stdlib.h>
29
#include <stdlib.h>
30
#include <sys/stat.h>
30
#include <sys/stat.h>
31
#include <fcntl.h>
31
#include <fcntl.h>
32
#include <ctype.h>
32
#include <ctype.h>
33
#include <climits>
33
#include "time-fix.h"
34
#include "time-fix.h"
34
35
35
#ifdef HAVE_ERRNO_H
36
#ifdef HAVE_ERRNO_H
36
#include <errno.h>
37
#include <errno.h>
37
#else
38
#else

Return to bug 218814