diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-21 20:56:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-21 20:56:50 +0000 |
commit | 13f96c4b6bc59f25ce430ad987cd0881284b6e76 (patch) | |
tree | ac3c6779e95afe538db77c552942e1f7c6651231 /src/interfaces/libpq/fe-connect.c | |
parent | 748a15a8ea98fc80fc7cebf523246910109c1eae (diff) |
Put path configuration information into a .h file instead of cluttering
several different module Makefiles with it. Also, do any adjustment
of installation paths during configure, rather than every time Makefile.global
is read.
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r-- | src/interfaces/libpq/fe-connect.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c index b94504c03b0..828a8452a10 100644 --- a/src/interfaces/libpq/fe-connect.c +++ b/src/interfaces/libpq/fe-connect.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.269 2004/03/24 03:44:59 momjian Exp $ + * $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.270 2004/05/21 20:56:49 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,6 +29,7 @@ #include "libpq-fe.h" #include "libpq-int.h" #include "fe-auth.h" +#include "pg_config_paths.h" #ifdef WIN32 #include "win32.h" |