diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-03-23 15:00:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-03-23 15:00:11 +0000 |
commit | 2f839c58e2e6fe1d812fa45d41b023c6258a8bd4 (patch) | |
tree | 62aee9acbe6ec6a53131985c1e8d0c5cbd23159a /src | |
parent | ac3884e2a9aeb4db54a4be0ff4ee146bf895da9c (diff) | |
download | postgresql-2f839c58e2e6fe1d812fa45d41b023c6258a8bd4.tar.gz postgresql-2f839c58e2e6fe1d812fa45d41b023c6258a8bd4.zip |
Please apply the attached patch to interfaces/libpq/libpq-fe.h. This would
allow to write applications which do not have a link to postgres_ext.h in
their source directory.
Andreas Kardos
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/libpq-fe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/libpq-fe.h b/src/interfaces/libpq/libpq-fe.h index fcd8e7819e7..1de1592ecc3 100644 --- a/src/interfaces/libpq/libpq-fe.h +++ b/src/interfaces/libpq/libpq-fe.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-fe.h,v 1.61 2000/03/11 03:08:37 tgl Exp $ + * $Id: libpq-fe.h,v 1.62 2000/03/23 15:00:11 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -24,7 +24,7 @@ extern "C" /* postgres_ext.h defines the backend's externally visible types, * such as Oid. */ -#include "postgres_ext.h" +#include <postgres_ext.h> /* Application-visible enum types */ |