diff options
author | Peter Eisentraut | 2000-01-19 02:59:03 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-01-19 02:59:03 +0000 |
commit | 533d5166292b94fb5dce0892c572b149d7da18bd (patch) | |
tree | 059d3d4884810504b45b8402bd8d79842c6a9ae2 /src/include | |
parent | d4aab2c000febbea5ad6be2fc9df74ab10f16f55 (diff) |
Removed MBFLAGS from makefiles since it's now done in include/config.h.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/miscadmin.h | 4 | ||||
-rw-r--r-- | src/include/regex/regex.h | 1 | ||||
-rw-r--r-- | src/include/regex/regex2.h | 2 | ||||
-rw-r--r-- | src/include/regex/utils.h | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 324b4437d14..af363b7ef9c 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -11,7 +11,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.48 2000/01/18 05:08:29 ishii Exp $ + * $Id: miscadmin.h,v 1.49 2000/01/19 02:59:02 petere Exp $ * * NOTES * some of the information in this file will be moved to @@ -22,6 +22,8 @@ #ifndef MISCADMIN_H #define MISCADMIN_H +#include "postgres.h" + #include "utils/trace.h" /***************************************************************************** diff --git a/src/include/regex/regex.h b/src/include/regex/regex.h index b0b86f3cb6d..677f5ca9a24 100644 --- a/src/include/regex/regex.h +++ b/src/include/regex/regex.h @@ -40,6 +40,7 @@ #ifndef _REGEX_H_ #define _REGEX_H_ +#include "postgres.h" #include <sys/types.h> #include "mb/pg_wchar.h" diff --git a/src/include/regex/regex2.h b/src/include/regex/regex2.h index aab9195dc55..25d7853c420 100644 --- a/src/include/regex/regex2.h +++ b/src/include/regex/regex2.h @@ -37,6 +37,8 @@ * @(#)regex2.h 8.4 (Berkeley) 3/20/94 */ +#include "postgres.h" + /* * First, the stuff that ends up in the outside-world include file */ diff --git a/src/include/regex/utils.h b/src/include/regex/utils.h index bf51a8b8e74..b2e2307e1d0 100644 --- a/src/include/regex/utils.h +++ b/src/include/regex/utils.h @@ -37,7 +37,7 @@ * @(#)utils.h 8.3 (Berkeley) 3/20/94 */ -#include "config.h" +#include "postgres.h" /* utility definitions */ #define DUPMAX 100000000 /* xxx is this right? */ |