Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 95679
Collapse All | Expand All

(-)opencdk-0.5.5/configure.ac (-1 / +1 lines)
Lines 76-82 Link Here
76
76
77
AC_STDC_HEADERS
77
AC_STDC_HEADERS
78
78
79
AC_HAVE_HEADERS(stdio.h string.h pwd.h netdb.h)
79
AC_HAVE_HEADERS(stdio.h string.h pwd.h netdb.h malloc.h)
80
80
81
if test "$GCC" = yes; then
81
if test "$GCC" = yes; then
82
    CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes"
82
    CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes"
(-)opencdk-0.5.5/src/encrypt.c (+2 lines)
Lines 24-30 Link Here
24
#endif
24
#endif
25
#include <stdio.h>
25
#include <stdio.h>
26
#include <stdarg.h>
26
#include <stdarg.h>
27
#ifdef HAVE_MALLOC_H
27
#include <malloc.h>
28
#include <malloc.h>
29
#endif
28
#include <assert.h>
30
#include <assert.h>
29
31
30
#include "opencdk.h"
32
#include "opencdk.h"
(-)opencdk-0.5.5/src/main.c (+2 lines)
Lines 24-30 Link Here
24
#endif
24
#endif
25
#include <stdio.h>
25
#include <stdio.h>
26
#include <errno.h>
26
#include <errno.h>
27
#ifdef HAVE_MALLOC_H
27
#include <malloc.h>
28
#include <malloc.h>
29
#endif
28
#ifdef HAVE_PWD_H
30
#ifdef HAVE_PWD_H
29
# include <pwd.h>
31
# include <pwd.h>
30
#endif
32
#endif
(-)opencdk-0.5.5/src/misc.c (+2 lines)
Lines 27-33 Link Here
27
#include <string.h>
27
#include <string.h>
28
#include <ctype.h>
28
#include <ctype.h>
29
#include <time.h>
29
#include <time.h>
30
#ifdef HAVE_MALLOC_H
30
#include <malloc.h>
31
#include <malloc.h>
32
#endif
31
33
32
#include "opencdk.h"
34
#include "opencdk.h"
33
#include "main.h"
35
#include "main.h"

Return to bug 95679