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

(-)libopendkim/dkim-canon.c (-4 / +6 lines)
Lines 6-12 Link Here
6
*/
6
*/
7
7
8
#ifndef lint
8
#ifndef lint
9
static char dkim_canon_c_id[] = "@(#)$Id: dkim-canon.c,v 1.10 2009/10/07 01:00:59 cm-msk Exp $";
9
static char dkim_canon_c_id[] = "@(#)$Id: dkim-canon.c,v 1.11 2009/10/20 18:35:51 cm-msk Exp $";
10
#endif /* !lint */
10
#endif /* !lint */
11
11
12
/* system includes */
12
/* system includes */
Lines 20-28 Link Here
20
#include <limits.h>
20
#include <limits.h>
21
#ifdef USE_TRE
21
#ifdef USE_TRE
22
# include <tre/tre.h>
22
# include <tre/tre.h>
23
# define regcomp	tre_regcomp
23
# ifndef TRE_USE_SYSTEM_REGEX_H
24
# define regexec	tre_regexec
24
#  define regcomp	tre_regcomp
25
# define regfree	tre_regfree
25
#  define regexec	tre_regexec
26
#  define regfree	tre_regfree
27
# endif /* TRE_USE_SYSTEM_REGEX_H */
26
#else /* USE_TRE */
28
#else /* USE_TRE */
27
# include <regex.h>
29
# include <regex.h>
28
#endif /* USE_TRE */
30
#endif /* USE_TRE */
(-)libopendkim/dkim.c (-5 / +7 lines)
Lines 6-12 Link Here
6
*/
6
*/
7
7
8
#ifndef lint
8
#ifndef lint
9
static char dkim_c_id[] = "@(#)$Id: dkim.c,v 1.16 2009/10/07 01:01:00 cm-msk Exp $";
9
static char dkim_c_id[] = "@(#)$Id: dkim.c,v 1.17 2009/10/20 18:35:51 cm-msk Exp $";
10
#endif /* !lint */
10
#endif /* !lint */
11
11
12
/* system includes */
12
/* system includes */
Lines 27-36 Link Here
27
#include <resolv.h>
27
#include <resolv.h>
28
#ifdef USE_TRE
28
#ifdef USE_TRE
29
# include <tre/tre.h>
29
# include <tre/tre.h>
30
# define regcomp	tre_regcomp
30
# ifndef TRE_USE_SYSTEM_REGEX_H
31
# define regexec	tre_regexec
31
#  define regcomp	tre_regcomp
32
# define regfree	tre_regfree
32
#  define regexec	tre_regexec
33
# define regerror	tre_regerror
33
#  define regfree	tre_regfree
34
#  define regerror	tre_regerror
35
# endif /* TRE_USE_SYSTEM_REGEX_H */
34
#else /* USE_TRE */
36
#else /* USE_TRE */
35
# include <regex.h>
37
# include <regex.h>
36
#endif /* USE_TRE */
38
#endif /* USE_TRE */

Return to bug 289929