summaryrefslogtreecommitdiff
path: root/package/at/at-3.1.12-0007-include-config-h.patch
blob: 8afc502c8d339e925bfe35b6932b3e650659b989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Make sure to include config.h so that NEEDS_* macros are properly
taken into account. This was a problem for NEEDS_YYWRAP, which was set
to 1 in config.h, but the corresponding code wasn't compiled in.

Index: at-3.1.12/parsetime.l
===================================================================
--- at-3.1.12.orig/parsetime.l	2010-02-10 00:17:46.000000000 +0100
+++ at-3.1.12/parsetime.l	2010-02-10 00:18:07.000000000 +0100
@@ -4,6 +4,7 @@
 #include <time.h>
 #include "y.tab.h"
 #include "parsetime.h"
+#include "config.h"
 
 char *last_token = NULL;
 char **my_argv;