diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-02-06 06:21:57 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-02-06 06:21:57 +0200 |
commit | 422a9f84f8bc91f267a176e737dfc2d7670d540b (patch) | |
tree | b3d99c5e9f079128d9d9a3b650676e63baec02a9 | |
parent | b4997014ca38482c242d84148787ab4211ed6897 (diff) | |
download | egawk-422a9f84f8bc91f267a176e737dfc2d7670d540b.tar.gz egawk-422a9f84f8bc91f267a176e737dfc2d7670d540b.tar.bz2 egawk-422a9f84f8bc91f267a176e737dfc2d7670d540b.zip |
Fix include order, mainly for VMS.
(cherry picked from commit 20cf1ff2b10b7b43d30a9213c63b8e92a12b9a90)
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | dfa.c | 4 |
2 files changed, 9 insertions, 3 deletions
@@ -1,4 +1,4 @@ -2013-02-04 Arnold D. Robbins <arnold@skeeve.com> +2013-01-31 Arnold D. Robbins <arnold@skeeve.com> * regcomp.c, regex.c, regex_internal.c, regexec.c: Update copyright years to sync with GLIBC. @@ -13,6 +13,12 @@ 2013-01-31 Arnold D. Robbins <arnold@skeeve.com> + * dfa.c: Include "dfa.h" which includes regex.h after limits.h + so that RE_DUP_MAX gets the correct value. Especially needed on + OpenVMS. Thanks to Anders Wallin. + +2013-01-31 Arnold D. Robbins <arnold@skeeve.com> + * PROBLEMS: Removed. It is no longer needed. * Makefile.am (EXTRA_DIST): Remove PROBLEMS from list. @@ -22,8 +22,6 @@ #include <config.h> -#include "dfa.h" - #include <assert.h> #include <ctype.h> #include <stdio.h> @@ -45,6 +43,8 @@ #include "missing_d/gawkbool.h" #endif /* HAVE_STDBOOL_H */ +#include "dfa.h" + #define STREQ(a, b) (strcmp (a, b) == 0) |